單項(xiàng)選擇題以下不屬于企業(yè)管理器功能的是()。

A.創(chuàng)建并管理所有數(shù)據(jù)庫、登陸、用戶、權(quán)限等。
B.管理和執(zhí)行數(shù)據(jù)導(dǎo)入導(dǎo)出、數(shù)據(jù)庫備份等多項(xiàng)輔助功能。
C.定義sqlserver組。
D.調(diào)試、執(zhí)行sql語句,批處理和腳本。


您可能感興趣的試卷

你可能感興趣的試題

1.多項(xiàng)選擇題若student表中包含主鍵sudentid,則執(zhí)行語句:update student set studentid=100 where studentid=101,結(jié)果可能是()。

A.錯誤提示:主鍵列不能更新。
B.更新了一條數(shù)據(jù)。
C.錯誤提示:違反主鍵約束。
D.既不提示錯誤,也不更新數(shù)據(jù)。

2.單項(xiàng)選擇題現(xiàn)有書目表book,包含字段:價格price(float),類別type(char);現(xiàn)在查詢各個類別的平均價格、類別名稱,以下語句正確的是()。

A.select avg(price),type from book group by type
B.select count(price),type from book group by price
C.select avg(price),type from book group by price
D.select count(price),type from book group by type