Query all employees from employee
select * from employee;
Order by employee salary
select * from employee ORDER BY salary;
adding DESC
will put largest salary first
select *
from employee
ORDER BY salaray DESC;
Get first and last name from employee
select first_name, last_name from employee;