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)
上述語句實現(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
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
在以下選項中哪些屬于視圖的功能()
視圖的意義:為用戶集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫的復(fù)雜性,使操作簡便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨立性。
想要實現(xiàn)級聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級聯(lián)”的更新或刪除。
MySQL通過賦予/撤銷某個用戶對某個數(shù)據(jù)庫或某個表的某項權(quán)力(讀、寫、更改、刪除等),來保證數(shù)據(jù)安全。
視圖就是一個虛表,保存視圖時,保存的是視圖的定義。
MySQL變量可分為兩大類,即()
MYSQL存儲過程優(yōu)點有,封裝性、增強SQL語句的功能和靈活性、減少網(wǎng)絡(luò)流量、高數(shù)據(jù)庫的安全性和數(shù)據(jù)的完整性。
MySQL 5.0存貯過程的優(yōu)勢是()
MySQL服務(wù)器通過()來維護連接的客戶端,其作用域僅限于當前連接。
在實際應(yīng)用中,為了防止新建視圖與已存在的視圖重名產(chǎn)生沖突,常用CREATE OR REPLACE VIEW來創(chuàng)建新視圖。