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
A.sp_spaceused authors
B.sp_depends authors
C.sp_help authors
D.sp_renamedb authors student
ALTER TABLE exa
ADD column_b VARCHAR(20) NULL
這條語句的語義為()
A.創(chuàng)建表格exa,使其增加一列
B.創(chuàng)建表格exa,使其刪除一列
C.修改表格exa 定義,使其增加一列
D.修改表格 exa 定義,使其刪除一列
最新試題
MySQL通過賦予/撤銷某個用戶對某個數(shù)據(jù)庫或某個表的某項權力(讀、寫、更改、刪除等),來保證數(shù)據(jù)安全。
在MySQL中如果權限授予不合理,可以通過EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來收回對所有數(shù)據(jù)庫的所有權限。
參數(shù)的取名可以與數(shù)據(jù)表的列名相同。
在以下選項中哪些屬于視圖的特點()
以下分支結構控制語句正確的是()
視圖就是一個虛表,保存視圖時,保存的是視圖的定義。
不同的用戶合理地分配相應權限,能有效控制不同用戶對不同數(shù)據(jù)的“增刪秘方”權限,是保護數(shù)據(jù)的一種有效手段。
正常情況下一般刪除命令都會有帶WHERE子句。
MySQL 5.0存貯過程的優(yōu)勢是()
MySQL權限管理分為兩個階段:服務器會檢查是否允許你連接,檢查你發(fā)出的每個請求,看是否有足夠的權限實施它。