1

I want to add two specific column's data in another table's columns using same database in phpmyadmin. I know the way to solve this using .CSV file but anyone help me to figure out this without using .CSV file. How i can export that two specific column's data from one table and import that in another table using same database?

1 Answer 1

4
INSERT INTO new_table (field1, field2)
  SELECT field1, field2
  FROM old_table
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.