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_-%” _代表任意一個(gè)字符
您可能感興趣的試卷
你可能感興趣的試題
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
最新試題
在定義數(shù)據(jù)表結(jié)構(gòu)的時(shí)候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級(jí)聯(lián)更新”,會(huì)為保證數(shù)據(jù)一致性帶來(lái)方便,但也存在“一改全改”的數(shù)據(jù)變化風(fēng)險(xiǎn)。
MySQL變量可分為兩大類(lèi),即用戶(hù)變量和系統(tǒng)變量。
在insert語(yǔ)句中可以嵌入子查詢(xún),通過(guò)子查詢(xún)將來(lái)自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
/*……*/用來(lái)標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
以下關(guān)于級(jí)聯(lián)刪除描述正確的是()
在SQL中,刪除操作有drop、truncate、delete,其中風(fēng)險(xiǎn)等級(jí)最高的是delete。
在實(shí)際應(yīng)用中,為了防止新建視圖與已存在的視圖重名產(chǎn)生沖突,常用CREATE OR REPLACE VIEW來(lái)創(chuàng)建新視圖。
在MYSQL中,存儲(chǔ)過(guò)程不可以帶有參數(shù)。
視圖的意義:為用戶(hù)集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫(kù)的復(fù)雜性,使操作簡(jiǎn)便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨(dú)立性。
在MySQL中,用單條INSERT語(yǔ)句處理多個(gè)插入要比使用多條INSERT語(yǔ)句效率更高。