adspace
How to make a copy values from one column to another in mysql?
Answer Posted / Krishna Bharti
To copy values from one column to another in MySQL, you can use the SQL query: SET target_column = source_column; where source_column and target_column are the names of your columns. Here's an example: UPDATE table SET new_column = old_column;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers