A.select * from authors where au_id =”72_-%”
B.select au_id=72_-% from authors
C.select * from authors where au_id like “72*-%”
D.select * from authors where au_id like “72_-%” _代表任意一個字符
您可能感興趣的試卷
你可能感興趣的試題
A. select * from authors where au_name=”d”
B. select “d” from authors
C. select * from authors where au_name like “d%”
D. select au_name like “d%” from authors
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
最新試題
在MYSQL中,存儲過程不可以帶有參數(shù)。
out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個值傳遞回調(diào)用他的過程。
在MySQL中如果權(quán)限授予不合理,可以通過EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來收回對所有數(shù)據(jù)庫的所有權(quán)限。
以下關(guān)于級聯(lián)刪除描述正確的是()
MYSQL存儲過程優(yōu)點有,封裝性、增強SQL語句的功能和靈活性、減少網(wǎng)絡(luò)流量、高數(shù)據(jù)庫的安全性和數(shù)據(jù)的完整性。
用戶可以超出權(quán)限控制對數(shù)據(jù)庫進行訪問。
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。
MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。
MySQL權(quán)限管理分為兩個階段:服務(wù)器會檢查是否允許你連接,檢查你發(fā)出的每個請求,看是否有足夠的權(quán)限實施它。
在SQL中,刪除操作有drop、truncate、delete,其中風險等級最高的是delete。