删除emp表的语句是“delete from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno);commit;”。

推荐:《oracle教程》

oracle数据库删除emp表

从emp表中删除各个部门中具有最高工资的员工。

删除语句是:

delete from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno);
commit;

避免删错,执行删除操作前先select确认一下:

select * from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno);

以上就是删除emp表的语句是什么的详细内容,转载自php中文网

点赞(448) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部