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
最新試題
下列關于用戶權限說法正確的是()
在SQL中,刪除操作有drop、truncate、delete,其中風險等級最高的是delete。
在MYSQL中,存儲過程不可以帶有參數。
在MySQL中,使用insert語句向數據庫表插入數據記錄的方式有()
插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數據必須與數據表上的(),否則正確的語法也無法實現正常的插入操作。
/*……*/用來標記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內容不會被執(zhí)行。
在實際應用中,為了防止新建視圖與已存在的視圖重名產生沖突,常用CREATE OR REPLACE VIEW來創(chuàng)建新視圖。
存儲過程命名規(guī)則與數據庫、數據表、列等標識符命名可以隨心所欲,不需要規(guī)則一致。
DELETE語句中使用JOIN子句執(zhí)行跨表刪除時,有INNER、LEFT、RIGHT即內連接、左連接、右連接等不同的連接方式。
MySQL權限管理分為兩個階段:服務器會檢查是否允許你連接,檢查你發(fā)出的每個請求,看是否有足夠的權限實施它。