IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

SQL query to display


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
murali_andaluri
Currently Banned

New User


Joined: 07 May 2005
Posts: 22

PostPosted: Thu Oct 04, 2007 3:57 pm
Reply with quote

Hi Friends,

i need SQL query for below reqirement

EMPLOYEE table, with columns EMPID, DEPTID, SALARY.

Write SQL Query to display

a. DEPTID & Number of employees (showing all departments)
b. DEPTID & Number of employees (showing only departments that have > 10 employees)
c. Count of departments that have > 10 employees
Back to top
View user's profile Send private message
raviprasath_kp
Warnings : 1

New User


Joined: 20 Feb 2005
Posts: 65
Location: chennai

PostPosted: Thu Oct 04, 2007 4:57 pm
Reply with quote

a. DEPTID & Number of employees (showing all departments)
select depid, count(empid) from employeetable;

b. DEPTID & Number of employees (showing only departments that have > 10 employees)

select depid,count(empid) employeetable
where count(empid) < 10
c. Count of departments that have > 10 employees
same vice versa

please correct me if i am wrong
Back to top
View user's profile Send private message
mahi

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Thu Oct 04, 2007 5:16 pm
Reply with quote

You have to use the group by function to get the number of employyees din a dept...
Back to top
View user's profile Send private message
mahi

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Thu Oct 04, 2007 5:24 pm
Reply with quote

Please go through this link.
www.ibmmainframes.com/viewtopic.php?t=14746&highlight=
Back to top
View user's profile Send private message
nuthan

Active User


Joined: 26 Sep 2005
Posts: 146
Location: Bangalore

PostPosted: Thu Oct 04, 2007 5:32 pm
Reply with quote

HI,

TRY THIS


SELECT DEPTID, COUNT(EMPID) FROM EMPLOYEE GROUP BY DEPTID;

SELECT DEPTID, COUNT(EMPID) FROM EMPLOYEE GROUP BY DEPTID HAVING COUNT(EMPID) > 10;

SELECT COUNT(*) FROM EMPLOYEE GROUP BY
DEPTID HAVING COUNT(EMPID) > 10;
Back to top
View user's profile Send private message
murali_andaluri
Currently Banned

New User


Joined: 07 May 2005
Posts: 22

PostPosted: Fri Oct 05, 2007 11:35 am
Reply with quote

Hi Nutan,

thank you very much for your quick response.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top