[ oracle ] 인라인뷰
페이지 정보
작성자 웹지기 댓글 0건 조회 1,061회 작성일 20-12-14 17:19본문
from 절에서 사용되는 뷰
select a.last_name, a.salary, a.department_id, b.maxsal
from employees a, (select department_id, max(salary) maxsal
from employees
group by department_id) b
where a.department_id = b.department_id
and a.salary<b.maxsal;
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.