多项选择题

A.create table new_table as (select *from old_table);
B.create table new_table as select *from old_table where 1=1;
C.create table new_table as select *from old_table;
D.create table new_table as select from old_table where 1=1;