select ________ from student;查询student表中age列的总和,全部小写。
举一反三
- 语句SELECT * FROM STUDENT WHERE AGE<;25 的执行,表示( )。 A: 查询STUDENT表中的所有记录 B: 查询STUDENT表中带*的记录 C: 查询STUDENT表中所有AGE<;25的记录 D: 查询STUDENT表中所有带*且AGE<;25的记录
- 下列SQL语句中,能够完成求某列最大值的是()。 A: SELECT AVG(Age) FROM Student B: SELECT MAX(Age) FROM Student C: SELECT MIN(Age) FROM Student D: SELECT COUNT(*) FROM Student
- 数据库中有一张表名称为Student,有列Name,Age,IDCard,Sex。要求写SQL语句查询出表中年龄介于20和30岁之间的数据,下列哪个SQL语句是正确的?() A: Select* From Student Where Age>=20 ANDAge>=30 B: Select* From Student Where Age>=20 ANDAge<=30 C: Select* From Student Where Age BET WENN 20AND30 D: Select* From Student Where Age>=20&&Age>=30"
- select ___ from student;查询student表中全部内容。
- 下面 语句和”select * from student where sex=’男’ && age=20;”语句查询出的结果是一样的。( ) A: select * from student where sex=’男’ or age=20; B: select * from student where sex=’男’ || age=20; C: select * from student where sex=’男’ and age=20; D: select * from student where sex,age in(’男’,20);