Get me everyone's names and emails

select fullname,email from employees

Select everyone whose last name begins with a ‘Z’

select * from employees where lastname like 'Z%';

Select everyone who has an academic email (.edu)
select * from employees where email like '%.edu';

Get me all employees with a 134 area code.
select * from employees where phone like '(134)%';

All American Employees have zip codes that are 5 digits long.
select * from employees where length(zip) = 5
Get me all non-american employees
select * from employees where length(zip) > 5

