select _______ from student;查询出student表中的记录总数。
举一反三
- 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的记录