查询学生表中学生人数
Select ()(*) from student
Select ()(*) from student
举一反三
- SELECT * FROM Student 表示查询学生表Student中所有学生的信息。(<br/>)
- 学生选课数据库中有如下学生表: 学生表(学号,姓名,专业) (对应的英文表示:student(sno,sname,specialty)) 如果要查询各专业的学生人数,下列查询语句中,正确的是( )。 A: SELECT specialty,count(*) FROM student order by specialty; B: SELECT count(specialty) FROM student order by specialty; C: SELECT specialty,count(*) FROM student group by specialty;
- 查询学生表中所有数据并保存到永久表STUDENT中:SELECT * FROM 学生表_____ TABLE STUDENT
- 查看学生表中学生姓名和专业信息。 以下错误的是? A: select sname,spec from student B: select spec,snamefrom student C: select sname spec from student
- 要查询学生表的所有内容的正确语句是 A: select ? from 学生表 B: select * from 学生表 C: select % from 学生表 D: select all from 学生表