/*37. Write a query in SQL to display the details of jobs which minimum salary is greater than 9000.*/ SELECT * FROM jobs WHERE min_salary > 9000;