A. select au_id from authors where price IN($15,:$20);
B. select au_id from authors where price between $15 and $20
C. select au_id from authors where price not between $15 and $20
D. select au_id from authors where price not IN($15,$20);
您可能感興趣的試卷
你可能感興趣的試題
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
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
在MYSQL中,存儲過程不可以帶有參數(shù)。
在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()
在以下選項中哪些屬于視圖的特點()
批量記錄插入,可以不要求插入數(shù)據(jù)結構匹配,與約束不沖突。
視圖的意義:為用戶集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫的復雜性,使操作簡便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨立性。
MySQL服務器通過()來維護連接的客戶端,其作用域僅限于當前連接。
MySQL變量可分為兩大類,即()
MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。
out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個值傳遞回調(diào)用他的過程。
視圖就是一個虛表,保存視圖時,保存的是視圖的定義。