单项选择题
A.where B.group by C.ather D.limits
以下能查询student表中age字段的最小值的SQL语句是()。A.select max(age)from ...
单项选择题以下能查询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 s...
单项选择题计算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
查询student表中name一列数据,以下命令正确的是()。A.select * from studentB...
单项选择题查询student表中name一列数据,以下命令正确的是()。
A.select * from student B.select name from student C.delete from student D.update name from student