select * into a from (select * from b) as temp where 1=0想复制一个b表的表结构,上面的写法是不是会先查出b表的所有数据再判断1=0呢?