Một ví dụ sử dụng phổ biến:hiển thị thông tin chi tiết về (các) nhân viên được thuê mới nhất cho từng bộ phận:
select e.deptno, e.empno, e.ename, e.hiredate, e.sal
from emp e
where e.hiredate = (select max(e2.hiredate)
from emp e2
where e2.deptno = e.deptno -- the correlation
);