/*27. Write a query in SQL to display the details of jobs in descending sequence on job title.*/ SELECT * FROM jobs ORDER BY job_title;