MySQL/Oracle數據庫,使用SQL快速複製表結構或數據

創建表,並複製數據 create table table1 as select * from table2; 只創建表結構,不復制數據 create table table1 as select * from table2 where 1=2; 複製表數據,兩張表字段相同:(table1必須存在) insert into table1 select * from table2; 複製表數據,兩張表
相關文章
相關標籤/搜索