单项选择题
查询student表中name一列数据,以下命令正确的是()。
A.select * from student
B.select name from student
C.delete from student
D.update name from student
点击查看答案&解析
相关考题
-
单项选择题
mysql查询数据内容命令正确的是()。
A.select * from class
B.drop * from class
C.modify * from class
D.change * from class -
单项选择题
查询学生表中的学生信息,按照姓名降序排列()。
A.select * from student order by named esc
B.select * from student order by name asc
C.select * from student group by named esc
D.select * from student group by name -
单项选择题
计算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
