sql查出每个部门高于部门平均工资的前五条数据
sql查出每个部门高于部门平均工资的数据会查,但是前五条不知道怎么查了(mysql数据库)dept表:deptno(部门编号)dname(部门名称)emp表:empno(...
sql查出每个部门高于部门平均工资的数据会查,但是前五条不知道怎么查了(mysql数据库)
dept表:
deptno(部门编号)
dname(部门名称)
emp表:
empno(雇员编号)
ename(雇员名字)
job(工作职务)
mgr(经理编号)
sal(工资)
deptno(部门编号)
select d.* from emp d ,(
select a.deptno , avg(a.sal) avgg from emp a group by deptno
) t
where t.deptno = d.deptno and d.sal>=t.avgg
order by d.sal 展开
dept表:
deptno(部门编号)
dname(部门名称)
emp表:
empno(雇员编号)
ename(雇员名字)
job(工作职务)
mgr(经理编号)
sal(工资)
deptno(部门编号)
select d.* from emp d ,(
select a.deptno , avg(a.sal) avgg from emp a group by deptno
) t
where t.deptno = d.deptno and d.sal>=t.avgg
order by d.sal 展开
4个回答
展开全部
with table_a as (
select deptno,avg(sal) avgsal from emp
)
select a.* from emp a inner join dept b on a.deptno=b.deptno inner join table_a c on a.deptno=c.deptno
and a.sal>c.avgsal
select deptno,avg(sal) avgsal from emp
)
select a.* from emp a inner join dept b on a.deptno=b.deptno inner join table_a c on a.deptno=c.deptno
and a.sal>c.avgsal
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mysql 不支持top命令,但支持limit命令
即 如: select * from table where a>b order by c limit 5.
即为 取出 符合条件a>b的按照C排序的前5条记录
即 如: select * from table where a>b order by c limit 5.
即为 取出 符合条件a>b的按照C排序的前5条记录
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在所有字段前,select后加上top 5
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
top 取前几条的 你可要试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |