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”);
您可能感興趣的試卷
你可能感興趣的試題
A.sp_renamedb authors student
B.sp_rename authors student
C.sp_renamedata authors student
D.sp_renameview authors student
A.sp_spaceused authors
B.sp_depends authors
C.sp_help authors
D.sp_renamedb authors student
ALTER TABLE exa
ADD column_b VARCHAR(20) NULL
這條語句的語義為()
A.創(chuàng)建表格exa,使其增加一列
B.創(chuàng)建表格exa,使其刪除一列
C.修改表格exa 定義,使其增加一列
D.修改表格 exa 定義,使其刪除一列
A.256
B.64
C.108
D.128
ALTER DATABASE Company
MODIFY FILE (NAME=testdat3,SIZE=20MB)
上述語句實(shí)現(xiàn)的功能為()
A.將Company數(shù)據(jù)庫中長度為20MB的testdat3數(shù)據(jù)文件設(shè)置為當(dāng)前文件。
B.在Company數(shù)據(jù)庫中創(chuàng)建一個(gè)20MB的名字為testdat3的數(shù)據(jù)文件。
C.將Company數(shù)據(jù)庫中長度為20MB的testdat3數(shù)據(jù)文件刪除
D.將Company數(shù)據(jù)庫中testdat3數(shù)據(jù)文件的長度改為20MB
最新試題
想要實(shí)現(xiàn)級(jí)聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級(jí)聯(lián)”的更新或刪除。
MySQL變量可分為兩大類,即()
在MYSQL中,存儲(chǔ)過程不可以帶有參數(shù)。
在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()
參數(shù)的取名可以與數(shù)據(jù)表的列名相同。
out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個(gè)值傳遞回調(diào)用他的過程。
在以下選項(xiàng)中哪些屬于視圖的特點(diǎn)()
/*……*/用來標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
在MySQL中,用單條INSERT語句處理多個(gè)插入要比使用多條INSERT語句效率更高。
視圖的意義:為用戶集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫的復(fù)雜性,使操作簡便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨(dú)立性。