單項(xiàng)選擇題刪除Oracle數(shù)據(jù)庫(kù)中父/子關(guān)系中的父表。在刪除父表時(shí)下列哪個(gè)對(duì)象不會(huì)刪除?()

A.相關(guān)約束
B.子列
C.相關(guān)觸發(fā)器
D.相關(guān)索引


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題數(shù)據(jù)庫(kù)中的中的PROFITS表中PRODUCT_NAME與SALE_PERIOD列建立主鍵。下列哪個(gè)語(yǔ)句無(wú)法定義這個(gè)主鍵?()

A.create table profits(product_name varchar2(10),sale_perion varchar2(10),profit number, constraint pk_profits_01 primary key(product_name,sale_period))
B.alter table profits add constraint pk_profits_01 primary key(product_name,sale_period)deferrabl
C.以上兩者都是

2.單項(xiàng)選擇題你要關(guān)閉SALES表中UNIT_PRICE列的非NULL約束。下列哪個(gè)語(yǔ)句能完成這個(gè)操作?()

A.alter table sales modify(unit_prices null)
B.alter table sales modify(unit_prices not null)
C.alter table sales add(unit_prices null)
D.alter table sales add(unit_prices not null)