刪除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中文網其他相關文章!