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 定義,使其刪除一列
最新試題
視圖就是一個(gè)虛表,保存視圖時(shí),保存的是視圖的定義。
在insert語句中可以嵌入子查詢,通過子查詢將來自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個(gè)值傳遞回調(diào)用他的過程。
正常情況下一般刪除命令都會(huì)有帶WHERE子句。
/*……*/用來標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
MySQL通過賦予/撤銷某個(gè)用戶對某個(gè)數(shù)據(jù)庫或某個(gè)表的某項(xiàng)權(quán)力(讀、寫、更改、刪除等),來保證數(shù)據(jù)安全。
用戶可以超出權(quán)限控制對數(shù)據(jù)庫進(jìn)行訪問。
在MySQL中,用單條INSERT語句處理多個(gè)插入要比使用多條INSERT語句效率更高。
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。
DELETE語句中使用JOIN子句執(zhí)行跨表刪除時(shí),有INNER、LEFT、RIGHT即內(nèi)連接、左連接、右連接等不同的連接方式。