單項(xiàng)選擇題當(dāng)刪除父表中的數(shù)據(jù)時(shí),在CREATE TABLE語句的外鍵定義中指定的()選項(xiàng)刪除子表中的數(shù)據(jù)。

A.ON TRUNCATE CASCADE
B.ON DELETE CASCADE
C.ON UPDATE CASCADE
D.A和C都是


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題視圖可以用于()

A.限制對表中指定列的訪問
B.限制對表中行的子集的訪問
C.A和B都是
D.A和B都不是

2.單項(xiàng)選擇題語句SELECT * FROM dept WHERE NOT EXISTS (SELECT * FROM emp WHERE deptno=dept.deptno)執(zhí)行后的結(jié)果為()

A.只顯示存在于EMP表中的部門全部信息
B.只顯示不存在于EMP表中的部門全部信息
C.未返回任何數(shù)據(jù)
D.顯示DEPT表中的全部信息

4.單項(xiàng)選擇題數(shù)據(jù)庫中有兩個(gè)用戶scott和myuser,物資表wz是屬于myuser用戶的,但當(dāng)前用戶是scott,要求查詢物資表wz(wno,wname,wtype,wunit)物資單位wunit列為null的記錄,取結(jié)果的前5條記錄顯示,以下正確的SQL語句是()

A.select*from scott.wz where wunit is null and rownum<5
B.select*from myuser.wz where wunit = null and rownum<5
C.select*from myuser.wz where wunit is null and rownum<6
D.select*form scott.wz where wunit is null and rownum<6

5.單項(xiàng)選擇題授予刪除任何表的系統(tǒng)權(quán)限(DROP ANY TABLE)給user1,并使其能繼續(xù)授該權(quán)限給其他用戶,以下正確的SQL語句是()

A.Grant drop any table to user1
B.Grant drop any table to user1 with admin option
C.Grant drop table to user1
D.Grant drop any table to user1 with check potion