This is part of a homework assignment. I've got several questions asking find the eid of the employee with the highest salary, or 2nd highest salary. Find the pilot that is certified for the most aircrafts. I don't have any idea on how to do it. There aren't any examples in the chapter, and google is proving less that helpful. If someone could show me how to do just one of these, it'll help a lot.
here are the tables:
Aircraft( aid: integer, aname: string, cruisingrange: integer )
Certified( eid: integer, aid: integer )
Employees( eid: integer, ename: string, salary: int )