where 1=1
2019-06-05where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。
1、select * from table where 1=1
2、拷贝表
create table table_name as select * from Source_table where 1=1;
3、复制表结构
create table table_name as select * from Source_table where 1 <> 1;