Practice Queries
Tasks
- Employee/Projects/Timecards DB: Find the project(s) with the most employees working on it (have submitted time cards)
- Employee/Projects/Timecards DB: Find the manager who has the lowest hourly wage of all managers.
Print their full name and hourly wage. Solve this problem in different ways:
- Using MIN() aggregate function
- Without using aggregate functions and without using Universal Quantifier
- Using Universal Quantifier
- Using set operations only