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 用來(lái)刪除表中所有數(shù)據(jù)
C.觸發(fā)器對(duì)Truncate table無(wú)效
D.delete 比Truncate table速度快
最新試題
MySQL數(shù)據(jù)庫(kù)中,通常將用戶寫入對(duì)應(yīng)的權(quán)限表來(lái)控制訪問(wèn)權(quán)限的,以下屬于用戶權(quán)限得選項(xiàng)()
DELETE語(yǔ)句中使用JOIN子句執(zhí)行跨表刪除時(shí),有INNER、LEFT、RIGHT即內(nèi)連接、左連接、右連接等不同的連接方式。
在MySQL中如果權(quán)限授予不合理,可以通過(guò)EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來(lái)收回對(duì)所有數(shù)據(jù)庫(kù)的所有權(quán)限。
在MySQL中,使用insert語(yǔ)句向數(shù)據(jù)庫(kù)表插入數(shù)據(jù)記錄的方式有()
mysql變量有4種類型:局部變量、用戶變量、會(huì)話變量和全局變量。
不同的用戶合理地分配相應(yīng)權(quán)限,能有效控制不同用戶對(duì)不同數(shù)據(jù)的“增刪秘方”權(quán)限,是保護(hù)數(shù)據(jù)的一種有效手段。
MySQL 5.0存貯過(guò)程的優(yōu)勢(shì)是()
MySQL變量可分為兩大類,即()
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。
在MYSQL中,存儲(chǔ)過(guò)程不可以帶有參數(shù)。