單項選擇題關(guān)于數(shù)據(jù)庫關(guān)系圖下列哪一個是正確的()。

A.關(guān)系圖是在同一個表中不同字段之間建立關(guān)聯(lián)
B.關(guān)系圖是表與表之間建立關(guān)聯(lián),與字段無關(guān)
C.關(guān)系圖是在不同表中的字段之間建立關(guān)聯(lián)
D.關(guān)系圖是在不同數(shù)據(jù)庫之間建立關(guān)聯(lián)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題限制輸入到列的值的范圍,應(yīng)使用()約束。

A.CHECK
B.PRIMARY KEY
C.FOREIGN KEY
D.UNIQUE

2.單項選擇題關(guān)于主鍵,以下()說法是錯誤的。

A.主鍵可以用來確保表中不存在重復的數(shù)據(jù)行
B.一個表必須有一個主鍵
C.一個表只能有一個主鍵
D.只能對整數(shù)型列設(shè)置主鍵

3.單項選擇題創(chuàng)建一個名為‘Customers’的新表,同時要求新表中包含表‘clients’的所有記錄,sql語句是()。

A.Select * into customers from clients
B.Select into customers from clients
C.Insert into customers select * from clients
D.Insert customers select * from clients

4.多項選擇題關(guān)于Truncate table, 以下()描述是錯誤的。

A.Truncate table 可跟Where從句,根據(jù)條件進行刪除
B.Truncate table 用來刪除表中所有數(shù)據(jù)
C.觸發(fā)器對Truncate table無效
D.delete 比Truncate table速度快

5.單項選擇題若要刪除book表中所有數(shù)據(jù),以下語句錯誤的是()。

A.truncate table book
B.delete * from book
C.drop table book
D.delete from book