多项选择题
oracle数据库中,如何快速做一个和原表表结构一样的空表?()
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 where 1=2;D.create table new_table as select *from old_table where rownum<1;
多项选择题 oracle数据库中,关于数据库的关闭,下列说法正确的是()。
多项选择题 oracle数据库中,关于数据库的启动,下列说法正确的是()。
多项选择题 oracle数据库中,快速做一个和原表(old_table)一样的备份表(new_table),可以使用以下哪些SQL命令?()