select _______ from student;查询出student表中的记录总数。
count(*)
举一反三
- select ___ from student;查询student表中全部内容。
- 以下______语句查询表student中第3条到第10条记录 。 A: SELECT * FROM student LIMIT 2,8; B: SELECT * FROM student LIMIT 2,9; C: SELECT * FROM student LIMIT 3,10; D: SELECT * FROM student LIMIT 3,9;
- 查询student表中的gender字段(gender代表性别),使其查询记录中不能出现重复值的SQL语句是(1.0分) A: SELECT gender FROM student; B: SELECT DISTINCT * FROM student; C: SELECT DISTINCT gender FROM student; D: SELECT * FROM student;
- 假设student表中有200条记录,语句“SELECT TOP 20 PERCENT FROM student”实现的查询功能是()。 A: 查询student表中的所有记录 B: 查询student表中的前40条记录 C: 查询student表中的前60条记录 D: 查询student表中的前80条记录
- 语句SELECT * FROM STUDENT WHERE AGE<;25 的执行,表示( )。 A: 查询STUDENT表中的所有记录 B: 查询STUDENT表中带*的记录 C: 查询STUDENT表中所有AGE<;25的记录 D: 查询STUDENT表中所有带*且AGE<;25的记录
内容
- 0
查询Student表中的所有记录的Sname、Ssex和Class列。 A: select Sname,Ssex,Class from student B: show Sname,Ssex,Class from student C: select * from student D: select Sname,Ssex,Class from course
- 1
若想查询student表中name为空值的记录,则正确的SQL语句是( )。 A: SELECT * FROM student WHERE name = NULL; B: SELECT * FROM student WHERE name like NULL; C: SELECT * FROM student WHERE name = 'NULL'; D: SELECT * FROM student WHERE name is NULL;
- 2
若想查询student表中name为空值的记录,则正确的SQL语句是(1.0分) A: select * from student where name = null; B: select * from student where name link null; C: select * from student where name = 'null'; D: select * from student where name is null;
- 3
select ________ from student;查询student表中age列的总和,全部小写。
- 4
使用select * from student可以查询基本表student中的所有数据