下面一小段SQL語法示範(尋找哪個部門是沒有存在員工的). select dept_name from dept d. where not exists (select * from emp e where e.dept_id=d.dept_id);.
確定! 回上一頁