how to find the name of employeee who are working on more then 2 companies tables: Employee (employee_name, street, city, age) Works (employee_name, company_name, salary)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This should get you employee names who are working for more than 2 companies. You can join into the Employee table if you need more of their details.
|
|||
|
|
This makes a list with each employee represented once, then filters out the employees so that only those with more than two records contributing to the group are shown. |
|||
|
|
|
Apart from earlier provided answers (which are correct btw), if you should need to join the tables, consider using numbers as a primary key (I'm assuming the employee_name is the primary key in both tables). This would speed up your query (provided that you have lots of records in one or both tables), because your DBMS will compare integers instead of strings, which is considerably faster. |
|||||
|
