You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
159 B
SQL

/*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;