單項選擇題select au_id from authors where state=”ca” or state=”ks”.下面哪一條語句與這一條語句執(zhí)行效果相同()

A. select au_id from authors where state IN(“ac”,:”sk”);
B. select au_id from authors where state between ac and sk
C. select au_id from authors where state not between ca and ks
D. select au_id from authors where state IN(“ca”,:”ks”);


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題SQL SERVER 2000中,可以用下面哪一條語句把authors表重命名為表student()

A.sp_renamedb authors student
B.sp_rename  authors  student
C.sp_renamedata authors student
D.sp_renameview authors student

2.單項選擇題SQL SERVER中,可以用下面哪一條語句查看表格authors和其他對象的依賴關(guān)系()

A.sp_spaceused authors
B.sp_depends authors
C.sp_help authors
D.sp_renamedb authors student

3.單項選擇題

ALTER TABLE exa  
ADD column_b VARCHAR(20) NULL    
這條語句的語義為()

A.創(chuàng)建表格exa,使其增加一列
B.創(chuàng)建表格exa,使其刪除一列
C.修改表格exa 定義,使其增加一列
D.修改表格 exa 定義,使其刪除一列

5.單項選擇題

ALTER DATABASE Company 
MODIFY FILE (NAME=testdat3,SIZE=20MB)
上述語句實現(xiàn)的功能為()

A.將Company數(shù)據(jù)庫中長度為20MB的testdat3數(shù)據(jù)文件設(shè)置為當前文件。
B.在Company數(shù)據(jù)庫中創(chuàng)建一個20MB的名字為testdat3的數(shù)據(jù)文件。
C.將Company數(shù)據(jù)庫中長度為20MB的testdat3數(shù)據(jù)文件刪除
D.將Company數(shù)據(jù)庫中testdat3數(shù)據(jù)文件的長度改為20MB