Using WITH clause write SELECT statement to list job_title of those jobs whose maximum salary is more than half maximum salary of whole company. Write down your subquery MAX_CALC_SAL. Name columns in result JOB_TITLE and JOB_TOTAL, and sort result on JOB_TOTAL in descending order. Analyze jobs table. You will require to join JOBS and EMPLOYEES to display job_title.