/* Join과 SubQuery */ use pubs select job_desc from jobs j,employee e where emp_id='PMA42628M' and j.job_id = e.job_id /* ① join */ select job_desc from jobs where job_id = ( select job_id from employee where emp_id='PMA42628M' ) /* ② subquery(이중쿼리) */ /* ①과 ②는 같은 결과 */ select job_id, job_desc from jobs where job_id in ( select job_id from employee ) /* in은 및에..