参考答案: ABC
详细解析:
创建表可以直接使用create、create table t1 as select、create table t1 like t2,其他方式错误A. [color=black]create table table_b(id bigint, name string);[/color]
B. [color=black]create table table_b as select * from table_a;[/color]
C. [color=black]create table table_b like table_a;[/color]
D. [color=black]replicate table_a to table_b;[/color]
E. [color=black]create table table _b like select * from table _a;[/color]
参考答案: ABC
详细解析:
创建表可以直接使用create、create table t1 as select、create table t1 like t2,其他方式错误