emp 테이블을 삭제하는 명령문은 "delete from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno);commit;"입니다.
권장: "oracle tutorial"
oracle 데이터베이스 삭제 emp 테이블
emp 테이블에서 각 부서의 급여가 가장 높은 직원을 삭제합니다.
삭제 내용은
delete from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno); commit;
삭제 오류를 방지하려면 삭제 작업을 수행하기 전에 선택하고 확인하세요.
select * from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno);
위 내용은 emp 테이블을 삭제하는 명령문은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!