January 01, 2002
PostgreSQL vs. MySQL (Web Techniques, Sep 2001)/* Find the employees who have the highest salary. */ SELECT employee_name FROM employee, salary WHERE employee.employee_id = salary.employee_id AND salary = (SELECT MAX(salary.salary) FROM salary);
|
|
||||||||||||||||||||||||||||
|
|
|
|