相关考题
-
单项选择题
在SQL语句中,可以使用()子句设置查询条件,如查询年龄大于30的数据。
A.where
B.group by
C.ather
D.limits -
单项选择题
以下能查询student表中age字段的最小值的SQL语句是()。
A.select max(age)from student
B.select min(age)from student
C.select sum(age)from student
D.select avg(age)from student -
单项选择题
计算stu表中score列平均分数的sql语句正确的是()。
A.select avg(score)from stu
B.select max(score)from stu
C.select min(score)from stu
D.select sum(score)from stu
