單項選擇題有一個商品信息表(表名:ProInfo),表的字段為:ProID(商品編號),ProCatg(商品類別),ProName(商品名稱),ProPrice(商品價格),下列選項()可以查詢每一類商品的平均價格。

A.Select  ProCatg,AVG(ProPrice) From ProInfo
B.Selecct AVG(ProPrice) From ProInfo Group By ProCatg
C.Select AVG(ProPrice) From ProInfo


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題下面()是數(shù)據(jù)庫模型。

A.導(dǎo)航模型
B.文件模型
C.星狀模型
D.層次模型

2.單項選擇題我們通常使用()輸入、存儲和管理數(shù)據(jù)。

A.數(shù)據(jù)庫管理(DBMS)
B.數(shù)據(jù)庫
C.管理信息(MIS)
D.數(shù)據(jù)詞典

4.單項選擇題現(xiàn)有學生住處表Student_info,其中包括姓名(stu_name),學號(stu_id),成績(stu_grade)。我們需要查詢成績?yōu)?0分的學生姓名,要求結(jié)果按照學號降序排列。下面查詢語句正確的是()。

A.SELECT stu_name FROM student_info Where stu_grade=80 ORDER BY stu_id ASC;
B.SELECT stu_name FROM student_info WHERE stu_grade=80 ORDER BY stu_id DESC;
C.SELECT stu_id,stu_name FROM student_info WHERE stu_grade=80 ORDER BY stu_name ASC;
D.SELECT stu_name FROM student_info WHERE stu_grade LIKE 80 ORDER BY stu_id DESC;

5.單項選擇題下列查詢條件()可以查詢出員工數(shù)據(jù)表中的字段"員工所在地"不在"柏林"的員工。

A.!>’柏林’
B.NOT’柏林’
C.ISNOT’柏林’
D.<>’柏林’