...除了名字外 其他字段主键完全一样的 table2 的表?
发布网友
发布时间:2022-06-27 14:26
我来回答
共1个回答
热心网友
时间:2024-07-19 20:02
oracle的话
create table2 as select * from table1 where 1<>1 --这个是只复制表结构
create table2 as select * from table1 --这个是复制表结构加数据
sqlserver
select * into table2 from table1 where 1<>1 --复制表结构
select * into table2 from table1 --表结构+数据