(16 points) Consider the following relational database:
- person(pname, street, city)
- works-for(pname, cname, salary)
- company(cname, city)
- manages(pname, mname)
Answer each of the following queries in:
- Find the street and city of all employees who work for the
SuperStore, live in Coquitlam, and earn more than $35,000.
- Find the names and the companies they work for, for all
people who have a higher salary than their manager.
- Assume that companies may be located in several cities.
Find all companies located in every city in which the
SuperStore is located.
- Find the names of
managers who manage more than 5 employees living in Richmond.