A.TRUNCATE TABLE 刪除數(shù)據(jù)后可以恢復(fù),而DELETE 不可以恢復(fù)
B.TRUNCATE TABLE 刪除數(shù)據(jù)后不可以恢復(fù),而DELETE 可以恢復(fù)
C.兩者刪除數(shù)據(jù)過后都可以恢復(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
最新試題
以下分支結(jié)構(gòu)控制語句正確的是()
MySQL數(shù)據(jù)庫中,通常將用戶寫入對(duì)應(yīng)的權(quán)限表來控制訪問權(quán)限的,以下屬于用戶權(quán)限得選項(xiàng)()
參數(shù)的取名可以與數(shù)據(jù)表的列名相同。
存儲(chǔ)過程一經(jīng)定義,就可以被反復(fù)調(diào)用,從而實(shí)現(xiàn)了代碼的復(fù)用性、封裝性、高性能等。
MySQL服務(wù)器通過()來維護(hù)連接的客戶端,其作用域僅限于當(dāng)前連接。
在MySQL中,用單條INSERT語句處理多個(gè)插入要比使用多條INSERT語句效率更高。
MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。
以下關(guān)于級(jí)聯(lián)刪除描述正確的是()
/*……*/用來標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
在實(shí)際應(yīng)用中,為了防止新建視圖與已存在的視圖重名產(chǎn)生沖突,常用CREATE OR REPLACE VIEW來創(chuàng)建新視圖。