Question 19
Table Name: College
Relevant Table: College(Professor (Text), Department (text), Salary (INT))
| Professor | Department | Salary |
| John | Computer Science | 60,000 |
| Van der | Mechanical Engineering | 57,500 |
| Ackerman | Physics | 45,000 |
| Suyash | Mathematics | 52,000 |
| Simrit | Computer Science | 56,500 |
| Jessica | Computer Science | 55,000 |
| Jenny | Personality Development | 50,000 |
QUERY: Write a query that returns the name and salary of professors who earn between 45000 and 56000.
Execute: SELECT Professor, Salary
FROM College
WHERE Salary BETWEEN 45000 AND 56000;
Answer:
| Professor | Department | Salary |
| Suyash | Mathematics | 52,000 |
| Jessica | Computer Science | 55,000 |
| Jenny | Personality Development | 50,000 |