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

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


您可能感興趣的試卷

你可能感興趣的試題

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

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

2.單項(xiàng)選擇題Sql server提供了一些字符串函數(shù),以下說法錯(cuò)誤的是()。

A.selec tright(’hello’,3)返回值為:hel
B.selec tltrim(rtrim(’hello’))返回值為:hello(前后都無空格)
C.selec treplace(’hello’,’e’,’o’)返回值為:hollo
D.selec tlen(’hello’)返回值為:5

3.單項(xiàng)選擇題在sql server2000中,關(guān)于數(shù)據(jù)庫說法錯(cuò)誤的是()。

A.數(shù)據(jù)庫在磁盤上默認(rèn)的存儲(chǔ)位置是:SQL Server安裝路徑\Microsoft SQL Server\MSSQL\Data
B.一個(gè)數(shù)據(jù)庫至少應(yīng)包含一個(gè)數(shù)據(jù)庫文件(*.mdf)和一個(gè)事務(wù)日志文件(*.ldf)
C.只有當(dāng)數(shù)據(jù)庫中不存在數(shù)據(jù)的情況下,才可以進(jìn)行數(shù)據(jù)庫的收縮操作。
D.可以通過從A機(jī)器拷貝數(shù)據(jù)庫文件和事務(wù)日志文件至B機(jī)器,然后通過在B機(jī)器上執(zhí)行相應(yīng)的附加數(shù)據(jù)庫操作,實(shí)現(xiàn)數(shù)據(jù)庫從A機(jī)器到B機(jī)器的復(fù)制。

4.單項(xiàng)選擇題不可以啟動(dòng)和停止SQL Server2000服務(wù)的工具是()。

A.SQL Server企業(yè)管理器
B.SQL Server服務(wù)管理器
C.Windows服務(wù)
D.SQL Server查詢分析器

5.單項(xiàng)選擇題現(xiàn)有表book,字段:id(int),title(varchar),price(float);其中id字段設(shè)為標(biāo)識(shí),使用insert語句向book表中插入數(shù)據(jù),以下語句錯(cuò)誤的是()。

A.insert into book(id,title,price)values(1,’java’,100)
B.insert into book(title,price)values(’java’,100)
C.insert into book values(’java’,100)
D.insert book values(’java’,100)