SQL复制表结构

来源:这里教程网 时间:2026-03-02 10:59:33 作者:
 全部复制 select *  into new table from  old table
只是复制表结构  select * into new table from old table where 1=2
复制数据 insert into new table (y1,y2,y3) select y1,y2,y3 from  old table

相关推荐