create table s_tmp as select * from Statistic where 1=2; 这个where1=2是什么意思呢
问题描述:
create table s_tmp as select * from Statistic where 1=2; 这个where1=2是什么意思呢
答
where 1=2 永远不成立;
所以 select * from statistic from where 1=2 的结果是个空集合,只返回statistic的字段.