-
Junior Member
Select the Employee names who held max positions
Write a query for this..!! i want to select the employee names who held max positions in the company. I want to display empname, positioncount. I have 2 tables where position, empno are in one table (jobhistory) and empno, empnames are in another table(employee). Select surname from employee where employee.empno in( select empno from jobhistory group by empno having count(*)=(select max(count(position)) from jobhistory group by empno)) the above query returns the empnames who held max positions in the company but i want to display the position count aswell..!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules