單項選擇題對于SQL SERVER數(shù)據(jù)庫,下列敘述正確的是()

A. 主鍵約束只能用數(shù)據(jù)表中的一列數(shù)據(jù)來惟一標識數(shù)據(jù)庫
B. 在數(shù)據(jù)表中存在主鍵相同的兩行數(shù)據(jù)
C. 主鍵可以輸入NULL值
D. 主鍵約束可使用數(shù)據(jù)表中的一列數(shù)據(jù)或多列數(shù)據(jù)來惟一地標識一行數(shù)據(jù)


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題select count(*) from authors where city=’beijin’.對于上一條語句,下面表述是正確的()

A.從authors表中查詢出city是beijin,且名為count的記錄數(shù)目。
B.從authors表中查詢出city 是beijin的第一條記錄
C.從authors表中查詢出city 是beijin 的所有記錄
D.從authors表中查詢出city是beijin的記錄總數(shù)目。

3.單項選擇題TRUNCATE TABLE 和 DELETE TABLE的區(qū)別是()

A.TRUNCATE TABLE 刪除數(shù)據(jù)后可以恢復,而DELETE 不可以恢復
B.TRUNCATE TABLE 刪除數(shù)據(jù)后不可以恢復,而DELETE 可以恢復
C.兩者刪除數(shù)據(jù)過后都可以恢復
D.兩者刪除數(shù)據(jù)后都不可以恢復

4.單項選擇題從authors 數(shù)據(jù)庫中查詢出所有au_id滿足前2個字符為”72”,第四個字符為”-“的作家的姓名,下面哪一條語句滿足條件()

A.select * from authors where au_id =”72_-%”
B.select au_id=72_-% from authors
C.select * from authors where au_id like “72*-%”
D.select * from authors where au_id like “72_-%” _代表任意一個字符

5.單項選擇題下面哪一條語句實現(xiàn)了下列功能:在authors數(shù)據(jù)庫中查找所有姓名以d 打頭的作家()

A. select * from authors where au_name=”d”
B. select “d” from authors
C. select * from authors where au_name like “d%”
D. select au_name like “d%” from authors