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ù)條件進行刪除
B.Truncate table 用來刪除表中所有數(shù)據(jù)
C.觸發(fā)器對Truncate table無效
D.delete 比Truncate table速度快
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
在insert語句中可以嵌入子查詢,通過子查詢將來自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
在MySQL中,用單條INSERT語句處理多個插入要比使用多條INSERT語句效率更高。
在以下選項中哪些屬于視圖的特點()
MySQL數(shù)據(jù)庫中,通常將用戶寫入對應(yīng)的權(quán)限表來控制訪問權(quán)限的,以下屬于用戶權(quán)限得選項()
以下關(guān)于級聯(lián)刪除描述正確的是()
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。
不同的用戶合理地分配相應(yīng)權(quán)限,能有效控制不同用戶對不同數(shù)據(jù)的“增刪秘方”權(quán)限,是保護數(shù)據(jù)的一種有效手段。
在以下選項中哪些屬于視圖的功能()
MySQL通過賦予/撤銷某個用戶對某個數(shù)據(jù)庫或某個表的某項權(quán)力(讀、寫、更改、刪除等),來保證數(shù)據(jù)安全。
在定義數(shù)據(jù)表結(jié)構(gòu)的時候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級聯(lián)更新”,會為保證數(shù)據(jù)一致性帶來方便,但也存在“一改全改”的數(shù)據(jù)變化風險。