A.TRUNCATE TABLE 刪除數(shù)據(jù)后可以恢復(fù),而DELETE 不可以恢復(fù)
B.TRUNCATE TABLE 刪除數(shù)據(jù)后不可以恢復(fù),而DELETE 可以恢復(fù)
C.兩者刪除數(shù)據(jù)過(guò)后都可以恢復(fù)
D.兩者刪除數(shù)據(jù)后都不可以恢復(fù)
您可能感興趣的試卷
你可能感興趣的試題
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
最新試題
在SQL中,刪除操作有drop、truncate、delete,其中風(fēng)險(xiǎn)等級(jí)最高的是delete。
想要實(shí)現(xiàn)級(jí)聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級(jí)聯(lián)”的更新或刪除。
視圖就是一個(gè)虛表,保存視圖時(shí),保存的是視圖的定義。
MySQL變量可分為兩大類(lèi),即()
MYSQL存儲(chǔ)過(guò)程優(yōu)點(diǎn)有,封裝性、增強(qiáng)SQL語(yǔ)句的功能和靈活性、減少網(wǎng)絡(luò)流量、高數(shù)據(jù)庫(kù)的安全性和數(shù)據(jù)的完整性。
在定義數(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)。
存儲(chǔ)過(guò)程命名規(guī)則與數(shù)據(jù)庫(kù)、數(shù)據(jù)表、列等標(biāo)識(shí)符命名可以隨心所欲,不需要規(guī)則一致。
MySQL數(shù)據(jù)庫(kù)中,通常將用戶(hù)寫(xiě)入對(duì)應(yīng)的權(quán)限表來(lái)控制訪問(wèn)權(quán)限的,以下屬于用戶(hù)權(quán)限得選項(xiàng)()
在MySQL中如果權(quán)限授予不合理,可以通過(guò)EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來(lái)收回對(duì)所有數(shù)據(jù)庫(kù)的所有權(quán)限。
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。