1. 程式人生 > 資料庫 >MySQL表的複製

MySQL表的複製

  1. 只複製表結構
    create table 新表名 like 表名;
  2. 複製表的結構和資料
    create table 新表名 select * from 表名;