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

SQL Query


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
learnmf

Active User


Joined: 14 Mar 2005
Posts: 123

PostPosted: Mon Jul 18, 2005 8:45 pm
Reply with quote

Hi friends

I have a query.


There is a table contain
Code:

EMPNO   EMPNAME     MGR    HIREDATE


In the above table i have to find out the name of those employee whose joining date is less then their manager.


Thanks
Chandra
Back to top
View user's profile Send private message
rssomm

New User


Joined: 05 Jun 2005
Posts: 41
Location: Hyderabad

PostPosted: Tue Jul 19, 2005 9:04 am
Reply with quote

Please try this

Select * from Emp E where hiredate > ( select hiredate from E where EMPNO=E.MGR)

Madhu
Back to top
View user's profile Send private message
rssomm

New User


Joined: 05 Jun 2005
Posts: 41
Location: Hyderabad

PostPosted: Tue Jul 19, 2005 9:36 am
Reply with quote

Sorry.. ignore my earlier reply. Please use the following.

Select * from Emp E where hiredate < ( select hiredate from Emp where EMPNO=E.MGR)

or

Select E.Ename Employee, E.HIREDATE , M.ename MANAGER, M.HIREDATE from EMP E, EMP M Where E.MGR = M.EMPNO and E.HIREDATE < M.HIREDATE;


Madhu
Back to top
View user's profile Send private message
gowtham_srgp

New User


Joined: 09 Jun 2005
Posts: 38

PostPosted: Wed Aug 17, 2005 5:58 pm
Reply with quote

learnmf wrote:
Hi friends

I have a query.


There is a table contain
Code:

EMPNO   EMPNAME     MGR    HIREDATE


In the above table i have to find out the name of those employee whose joining date is less then their manager.


Thanks
Chandra



hai.....

SELECT EMPNAME,MGR FROM EMPDATA.X WHERE HIREDATE.X < ALL

( SELECT HIREDATE.Y FROM EMPDATA WHERE MGR.Y = MGR.X)

hope this helps you. corrections welcomed.........


gowtham
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 -> DB2

 


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