「拷贝表」
//不会将索引也复制
//where 1=1 写不写都可以
create table table_name as select * from Source_table where 1=1;
create table table_name as select * from Source_table;
「复制表结构」
//不会将索引也复制
create table table_name as select * from Source_table where 1 <> 1;
「拷贝表」
//不会将索引也复制
//where 1=1 写不写都可以
create table table_name as select * from Source_table where 1=1;
create table table_name as select * from Source_table;
「复制表结构」
//不会将索引也复制
create table table_name as select * from Source_table where 1 <> 1;
本文标题:sql复制一张表 包含数据和不包含数据
本文链接:https://www.haomeiwen.com/subject/ytafwktx.html
网友评论