多項選擇題oracle數(shù)據(jù)庫中,快速做一個和原表(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;


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題oracle數(shù)據(jù)庫中,什么時候需要用系統(tǒng)管理員DBA用戶登陸?()

A.創(chuàng)建、查看表空間
B.修改、刪除表空間
C.查看、修改系統(tǒng)參數(shù)
D.oracle數(shù)據(jù)庫打開,關(guān)閉

2.多項選擇題oracle數(shù)據(jù)庫中,將表名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;

4.多項選擇題數(shù)據(jù)操縱語言(DML)命令用來改變數(shù)據(jù)庫中的數(shù)據(jù),它的基本語句有()。

A.CREATE(創(chuàng)建)
B.INSERT(插入)
C.UPDATE(修改)
D.DELETE(刪除)