要求给工资不到部门平均工资的那些人加上部门平均工资的5%
oracle scott 用户下,使用EMP表。
posted on 2006-09-10 19:34
JavaCoffe 阅读(1189)
评论(1) 编辑 收藏 所属分类:
Oralce&&PL/SQL
FeedBack:
# re: SQL语句(要求给工资不到部门平均工资的那些人加上部门平均工资的5%)
2006-09-10 20:38 |
答案如下:
update emp set sal*1.05 where empno in(
select empno from emp e ,(select avg(sal) as avg_sal,deptno from emp group by deptno) aa
where e.deptno = aa.deptno and e.sal < aa.avg_sal)
回复 更多评论