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速度快
最新試題
存儲(chǔ)過(guò)程一經(jīng)定義,就可以被反復(fù)調(diào)用,從而實(shí)現(xiàn)了代碼的復(fù)用性、封裝性、高性能等。
插入作為一種SQL操作,除了需要正確的命令語(yǔ)法外,還要求插入數(shù)據(jù)必須與數(shù)據(jù)表上的(),否則正確的語(yǔ)法也無(wú)法實(shí)現(xiàn)正常的插入操作。
在insert語(yǔ)句中可以嵌入子查詢(xún),通過(guò)子查詢(xún)將來(lái)自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
想要實(shí)現(xiàn)級(jí)聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級(jí)聯(lián)”的更新或刪除。
正常情況下一般刪除命令都會(huì)有帶WHERE子句。
在SQL中,刪除操作有drop、truncate、delete,其中風(fēng)險(xiǎn)等級(jí)最高的是delete。
在MySQL中,使用insert語(yǔ)句向數(shù)據(jù)庫(kù)表插入數(shù)據(jù)記錄的方式有()
視圖的意義:為用戶(hù)集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫(kù)的復(fù)雜性,使操作簡(jiǎn)便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨(dú)立性。
在MySQL中如果權(quán)限授予不合理,可以通過(guò)EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來(lái)收回對(duì)所有數(shù)據(jù)庫(kù)的所有權(quán)限。
MySQL通過(guò)賦予/撤銷(xiāo)某個(gè)用戶(hù)對(duì)某個(gè)數(shù)據(jù)庫(kù)或某個(gè)表的某項(xiàng)權(quán)力(讀、寫(xiě)、更改、刪除等),來(lái)保證數(shù)據(jù)安全。