單項(xiàng)選擇題select count(*) from authors where city=’beijin’.對于上一條語句,下面表述是正確的()

A.從authors表中查詢出city是beijin,且名為count的記錄數(shù)目。
B.從authors表中查詢出city 是beijin的第一條記錄
C.從authors表中查詢出city 是beijin 的所有記錄
D.從authors表中查詢出city是beijin的記錄總數(shù)目。


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題TRUNCATE TABLE 和 DELETE TABLE的區(qū)別是()

A.TRUNCATE TABLE 刪除數(shù)據(jù)后可以恢復(fù),而DELETE 不可以恢復(fù)
B.TRUNCATE TABLE 刪除數(shù)據(jù)后不可以恢復(fù),而DELETE 可以恢復(fù)
C.兩者刪除數(shù)據(jù)過后都可以恢復(fù)
D.兩者刪除數(shù)據(jù)后都不可以恢復(fù)

2.單項(xiàng)選擇題從authors 數(shù)據(jù)庫中查詢出所有au_id滿足前2個(gè)字符為”72”,第四個(gè)字符為”-“的作家的姓名,下面哪一條語句滿足條件()

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è)字符

3.單項(xiàng)選擇題下面哪一條語句實(shí)現(xiàn)了下列功能:在authors數(shù)據(jù)庫中查找所有姓名以d 打頭的作家()

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

4.單項(xiàng)選擇題select au_id from authors where price<$15 or price >$ 20.下面哪一條語句與這一條語句執(zhí)行效果相同()

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);

5.單項(xiàng)選擇題select au_id from authors where state=”ca” or state=”ks”.下面哪一條語句與這一條語句執(zhí)行效果相同()

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”);

最新試題

MySQL 5.0存貯過程的優(yōu)勢是()

題型:多項(xiàng)選擇題

MySQL數(shù)據(jù)庫中,通常將用戶寫入對應(yīng)的權(quán)限表來控制訪問權(quán)限的,以下屬于用戶權(quán)限得選項(xiàng)()

題型:多項(xiàng)選擇題

out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個(gè)值傳遞回調(diào)用他的過程。

題型:判斷題

在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()

題型:多項(xiàng)選擇題

存儲過程命名規(guī)則與數(shù)據(jù)庫、數(shù)據(jù)表、列等標(biāo)識符命名可以隨心所欲,不需要規(guī)則一致。

題型:判斷題

MySQL變量可分為兩大類,即()

題型:多項(xiàng)選擇題

用戶可以超出權(quán)限控制對數(shù)據(jù)庫進(jìn)行訪問。

題型:判斷題

在MySQL中如果權(quán)限授予不合理,可以通過EVOKE ALL PRIVILEGES ON *.*FROM’username’@’localhost’來收回對所有數(shù)據(jù)庫的所有權(quán)限。

題型:判斷題

DELETE語句中使用JOIN子句執(zhí)行跨表刪除時(shí),有INNER、LEFT、RIGHT即內(nèi)連接、左連接、右連接等不同的連接方式。

題型:判斷題

在insert語句中可以嵌入子查詢,通過子查詢將來自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。

題型:判斷題