In MySQL, how to copy the content of one table to another table within the same database?

后端 未结 8 1286
既然无缘
既然无缘 2020-12-22 16:40

I am new to MySQL. I would like to copy the content of one table to another table within the same database. Basically, I would like to insert to a table from another table.

8条回答
  •  自闭症患者
    2020-12-22 17:25

    This worked for me. You can make the SELECT statement more complex, with WHERE and LIMIT clauses.

    First duplicate your large table (without the data), run the following query, and then truncate the larger table.

    INSERT INTO table_small (SELECT * FROM table_large WHERE column = 'value' LIMIT 100)
    

    Super simple. :-)

提交回复
热议问题