单项选择题
查询student表中的学生信息,按照姓名降序排列,以下语句操作正确的是()。
A.select * from student order by name desc
B.select * from student order by name asc
C.select * from student group by name desc
D.select * from student group by name
点击查看答案&解析
相关考题
-
单项选择题
alter table语句用于在已有的表中,修改字段名时使用的关键字是()。
A.add
B.change
C.modify
D.drop -
单项选择题
在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
