A.truncate table book
B.delete * from book
C.drop table book
D.delete from book
您可能感興趣的試卷
你可能感興趣的試題
A.Update grade set score=score+5
B.Update grade set score=score+5 where score>=55 or score <=60
C.Update grade set score=score+5 where score between 55 and 60
D.Update grade set score=score+5 where score >=55 and score <=60
A.select top 1 * from book order by price asc
B.select top 1 * from book order by price desc
C.select top 1 * from book where price= (select max (price)from book)
D.select top 1 * from book where price= max(price)
A.select max(score) from grade
B.select top 1 score from grade order by score asc
C.Select min(score) from grade
D.select top 1 score from grade order by score desc
A.01053090A#Hm3?
B.01003090A01
C.01053090D09
D.0101A01
A.Truncate table 可跟Where從句,根據(jù)條件進(jìn)行刪除
B.Truncate table 用來刪除表中所有數(shù)據(jù)
C.觸發(fā)器對Truncate table無效
D.delete 比Truncate table速度快
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
MySQL 5.0存貯過程的優(yōu)勢是()
/*……*/用來標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
在定義數(shù)據(jù)表結(jié)構(gòu)的時(shí)候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級聯(lián)更新”,會(huì)為保證數(shù)據(jù)一致性帶來方便,但也存在“一改全改”的數(shù)據(jù)變化風(fēng)險(xiǎn)。
在以下選項(xiàng)中哪些屬于視圖的特點(diǎn)()
視圖就是一個(gè)虛表,保存視圖時(shí),保存的是視圖的定義。
插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數(shù)據(jù)必須與數(shù)據(jù)表上的(),否則正確的語法也無法實(shí)現(xiàn)正常的插入操作。
在以下選項(xiàng)中哪些屬于視圖的功能()
參數(shù)的取名可以與數(shù)據(jù)表的列名相同。
想要實(shí)現(xiàn)級聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級聯(lián)”的更新或刪除。
MySQL服務(wù)器通過()來維護(hù)連接的客戶端,其作用域僅限于當(dāng)前連接。