Duplicating a MySQL table, indices, and data

前端 未结 12 1277
天涯浪人
天涯浪人 2020-11-27 08:42

How do I copy or clone or duplicate the data, structure, and indices of a MySQL table to a new one?

This is what I\'ve found so far.

This will copy the data

12条回答
  •  猫巷女王i
    2020-11-27 09:30

    To duplicate a table and its structure without data from a different a database use this. On the new database sql type

    CREATE TABLE currentdatabase.tablename LIKE olddatabase.tablename

提交回复
热议问题