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 定義,使其刪除一列
最新試題
插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數(shù)據(jù)必須與數(shù)據(jù)表上的(),否則正確的語法也無法實(shí)現(xiàn)正常的插入操作。
mysql變量有4種類型:局部變量、用戶變量、會(huì)話變量和全局變量。
在insert語句中可以嵌入子查詢,通過子查詢將來自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
存儲(chǔ)過程命名規(guī)則與數(shù)據(jù)庫、數(shù)據(jù)表、列等標(biāo)識(shí)符命名可以隨心所欲,不需要規(guī)則一致。
在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()
在定義數(shù)據(jù)表結(jié)構(gòu)的時(shí)候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級(jí)聯(lián)更新”,會(huì)為保證數(shù)據(jù)一致性帶來方便,但也存在“一改全改”的數(shù)據(jù)變化風(fēng)險(xiǎn)。
MySQL服務(wù)器通過()來維護(hù)連接的客戶端,其作用域僅限于當(dāng)前連接。
在MYSQL中,存儲(chǔ)過程不可以帶有參數(shù)。
在MySQL中如果權(quán)限授予不合理,可以通過EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來收回對(duì)所有數(shù)據(jù)庫的所有權(quán)限。
正常情況下一般刪除命令都會(huì)有帶WHERE子句。