多项选择题
oracle数据库中,快速做一个和原表(old_table)一样的备份表(new_table),可以使用以下哪些SQL命令?()
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;
点击查看答案&解析
相关考题
-
多项选择题
oracle数据库中,什么时候需要用系统管理员DBA用户登陆?()
A.创建、查看表空间
B.修改、删除表空间
C.查看、修改系统参数
D.oracle数据库打开,关闭 -
多项选择题
oracle数据库中,将表名old_table修改表名为new_table的SQL命令是()。
A.alter table old_table rename new_table;
B.alter table old_table rename to new_table;
C.rename old_table to new_table;
D.rename old_table new_table; -
多项选择题
oracle数据库中,下列哪些是监听启停或查看状态相关命令?()
A.lsnrctl start
B.lsnrctl stop
C.lsnrctl status
D.lsnrctl restart
