|
| Total Answers and Comments: 6 |
Last Update: October 29, 2008 Asked by: zecar |
|
| | |
|
Submitted by: amikat select job, count(ename) from emp group by job;
Above answer was rated as good by the following members: subajay, Ismail AbulHassan | |
September 17, 2006 05:01:19 | #1 |
| oradev03 |
|
Member Since: September 2006 Contribution: 2 |
RE: write a query to display the no.of people with the...
| SELECT job COUNT(*) As No of employees FROM emp GROUP BY job; |  | | Is this answer useful? Yes | No | 1 0 | Overall Rating: +1 |
|
| |
|
December 22, 2006 05:22:25 | #2 |
| Dakshina Murthy |
|
|
RE: write a query to display the no.of people with the...
| SELECT job COUNT(*) FROM emp GROUP BY job; |  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|