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
最新試題
存儲過程命名規(guī)則與數(shù)據(jù)庫、數(shù)據(jù)表、列等標(biāo)識符命名可以隨心所欲,不需要規(guī)則一致。
想要實現(xiàn)級聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級聯(lián)”的更新或刪除。
out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個值傳遞回調(diào)用他的過程。
插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數(shù)據(jù)必須與數(shù)據(jù)表上的(),否則正確的語法也無法實現(xiàn)正常的插入操作。
在定義數(shù)據(jù)表結(jié)構(gòu)的時候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級聯(lián)更新”,會為保證數(shù)據(jù)一致性帶來方便,但也存在“一改全改”的數(shù)據(jù)變化風(fēng)險。
視圖就是一個虛表,保存視圖時,保存的是視圖的定義。
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。
在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()
參數(shù)的取名可以與數(shù)據(jù)表的列名相同。
MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。