// 複製表結構及資料
CREATE TABLE myTable SELECT * FROM menu where 1=1
//複製表結構
CREATE TABLE myTable SELECT * FROM menu where 1=2
//複製表結構,這個方式方便些
CREATE TABLE myTable LIKE menu
//複製B表資料到A表 :假設A,B表結構一樣
insert into A select * from B
//select DISTINCT 欄位1 表示 對 欄位1 唯一性的查詢。
//如果欄位1後面追加欄位: 表示對多個欄位進行組合在一起的唯一性查詢
select DISTINCT 欄位1,欄位2... from table ;