單項選擇題現(xiàn)有書目表book,包含字段:價格price(float),類別type(char);現(xiàn)在查詢各個類別的平均價格、類別名稱,以下語句正確的是()。

A.select avg(price),type from book group by type
B.select count(price),type from book group by price
C.select avg(price),type from book group by price
D.select count(price),type from book group by type


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題Sql server提供了一些字符串函數(shù),以下說法錯誤的是()。

A.selec tright(’hello’,3)返回值為:hel
B.selec tltrim(rtrim(’hello’))返回值為:hello(前后都無空格)
C.selec treplace(’hello’,’e’,’o’)返回值為:hollo
D.selec tlen(’hello’)返回值為:5

2.單項選擇題在sql server2000中,關(guān)于數(shù)據(jù)庫說法錯誤的是()。

A.數(shù)據(jù)庫在磁盤上默認(rèn)的存儲位置是:SQL Server安裝路徑\Microsoft SQL Server\MSSQL\Data
B.一個數(shù)據(jù)庫至少應(yīng)包含一個數(shù)據(jù)庫文件(*.mdf)和一個事務(wù)日志文件(*.ldf)
C.只有當(dāng)數(shù)據(jù)庫中不存在數(shù)據(jù)的情況下,才可以進行數(shù)據(jù)庫的收縮操作。
D.可以通過從A機器拷貝數(shù)據(jù)庫文件和事務(wù)日志文件至B機器,然后通過在B機器上執(zhí)行相應(yīng)的附加數(shù)據(jù)庫操作,實現(xiàn)數(shù)據(jù)庫從A機器到B機器的復(fù)制。

3.單項選擇題不可以啟動和停止SQL Server2000服務(wù)的工具是()。

A.SQL Server企業(yè)管理器
B.SQL Server服務(wù)管理器
C.Windows服務(wù)
D.SQL Server查詢分析器

4.單項選擇題現(xiàn)有表book,字段:id(int),title(varchar),price(float);其中id字段設(shè)為標(biāo)識,使用insert語句向book表中插入數(shù)據(jù),以下語句錯誤的是()。

A.insert into book(id,title,price)values(1,’java’,100)
B.insert into book(title,price)values(’java’,100)
C.insert into book values(’java’,100)
D.insert book values(’java’,100)

5.單項選擇題查找student表中所有電話號碼(列名:telephone)的第一位為8或6,第三位為0的電話號碼()。

A.SELECT telephone FROM student WHERE telephoneLIKE’[8,6]%0*’
B.SELECT telephone FROM student WHERE telephoneLIKE’(8,6)*0%’
C.SELECT telephone FROM student WHERE telephoneLIKE’[8,6]_0%’
D.SELECT telephone FROM student WHERE telephoneLIKE’[8,6]_0*’