在sql中查寻年龄最大和最小的女学生年龄,及其对应姓名。
6个回答
展开全部
年龄最大的:select top 1 * from 表 order by 年龄 desc
年龄最小 的:select top 1 * from 表 order by 年龄
年龄最小 的:select top 1 * from 表 order by 年龄
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
很简单
select * from tb
where age in
(
select min(age) age from tb
union all
select max(age) from tb
)
and sex='女'
select * from tb
where age in
(
select min(age) age from tb
union all
select max(age) from tb
)
and sex='女'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select age,user from tb_user where age in(select max(age),min(age) from tb_user) order by age desc
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select name,min(age) from 表 where and sex='女'
union all
select name,max(age) from 表 where and sex='女'
union all
select name,max(age) from 表 where and sex='女'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询