首頁  >  文章  >  資料庫  >  mysql 表的相關操作

mysql 表的相關操作

黄舟
黄舟原創
2017-01-17 13:10:481316瀏覽

mysql 表的相關操作

創建表 

create table tt

沒有才創建表 

create table if not exists tt

沒有才創建表 

create table t2 like t1  
create table t2 select * from t1 where 1 = 2

的話,

insert into t2 select * from t1
只需要複製某些字段,
insert into t2 (column1, column2, ...) select (column1, column2, ...) from t1

以上就是mysql 表的相關操作的內容,更多相關內容請關注PHP中文網(www.php.cn)!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn