sql查询每个系中年龄最大的人的姓名和年龄
select name,age from table where age= (select max(age)from table group by 院系)你看这个可以不,先把每个院系中的最大年龄查出来,然后再通过子查询找出这个最大年龄的人的姓名。
数据库中查找年龄最大的学生的姓名?
age = (SELECT MAX(age) FROM 表 )
查询全体学生的姓名及其出生年份 (数据库)
1: select name , age from student;2: select major_num from student where major = '计算机专业';3: select * from student where age >19;4: select name , ID from stduent where major = '...';5: select name , age from student where sex = '男' or age >19 6: select ...
sql语句查询表中年龄最大的人的姓名
select a.姓名, a.出生年月日 from UserT a where not exists (select 1 from userT b where b.出生年月日 < a.出生年月日)---不存在比本行出生年月日小的记录,那么得到的就是出生年月日最小的值,也就是说,年龄最大的。或者select * from UserT a where a.出生年月日 = ...
使用student数据库,查询学生基本信息表中的每个学生的所有数据
在数据库管理中,使用student数据库查询学生基本信息表中的每个学生的所有数据是一项基本操作。通过SQL语句,可以灵活地检索和处理数据。例如,查询所有学生的姓名和年龄,可以通过以下语句实现:select Sname, Sage from Student 如果需要进一步筛选,可以根据特定的部门查询学生信息,比如计算机系的学生:select ...
用sql语句,查询每个班级成绩排名前三名的学生姓名
思路是先分组后按成绩排序
查询各系及学生数,最后求出共有多少系和多少学生用数据库语句怎么...
查询各系的学生数 select dept,count(student_id) from student_table group by dept;最后求出共有多少系和多少学生 select count(dept),sum(student_id) from (select dept,count(student_id) student_id from student_table group by dept;)
找出前三条学生记录的学生姓名, 专业,出生日期用SQL怎么写?
是按什么排序,如果不需要按字段排序只要3条的话,可以这样:select 学生姓名,专业,出生日期 from table limit 3 注意获取字段名称和表名称根据你表的名称修改,逗号是英文逗号 如果需要根据某字段排序的话,假如是id,可以这样:select 学生姓名,专业,出生日期 from table order by id limit 3 ...
关于数据库查询语句,求大神帮帮忙,分我不会吝啬的。。。
1、select * from 学生 where 姓名='张三'2、select 姓名,民族 from 学生 where 性别='女' and 系部='管理工程系'(没有性别这个字段)3、select count(1) from 学生 where 系部='管理工程系'4、5、select * from 学生 where 学号 ='2009'(2009级应该和学号有关吧,你自己看下怎么写)6...
如何用sql语句根据出生年月进行排序?
根据关系模型Students(学号,姓名,性别,出生年月),查询性别为“男”并按年龄从小到大到排序:SELECT*FROM Students WHERE 性别="男" ORDER BY 出生年月 DESC。出生年月越大,也就是越晚出生,年龄越小,所以要年龄从小到大到排序,就要出生年月按大到小排序。