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

Need SQL query to select managers with atleast 5 yrs exp.


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

New User


Joined: 11 Sep 2007
Posts: 2
Location: mysore

PostPosted: Wed Jan 16, 2008 7:02 pm
Reply with quote

hi friends,

its a SQL Query.
a table EMP with columns (emp_no,emp_name,DOJ,salary,manager_name)
DOJ :Dote Of Joining in present company
manager_name :Name of the reporting Manager

Now the company decides to give hike to the only managers who are having atleast 5-Years experience in this(present) company.

How to write SQL Select statement to solve above requirement.
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Wed Jan 16, 2008 7:12 pm
Reply with quote

srinivas p wrote:
hi friends,

its a SQL Query.
a table EMP with columns (emp_no,emp_name,DOJ,salary,manager_name)
DOJ :Dote Of Joining in present company
manager_name :Name of the reporting Manager

Now the company decides to give hike to the only managers who are having atleast 5-Years experience in this(present) company.

How to write SQL Select statement to solve above requirement.


This isn't tested but it should work.

Code:
SELECT * FROM EMP A
WHERE EXISTS (SELECT 1 FROM EMP B
                         WHERE A.EMP_NAME = B.MANAGER_NAME)
AND CURRENT DATE - DOJ >= 50000;
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Wed Jan 16, 2008 10:10 pm
Reply with quote

I propose we all agree to never answer questions with absolutely zero content in the subject.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Jan 16, 2008 10:27 pm
Reply with quote

Hello srinivas p, and welcome to the forums,

When you have a question, it is important to use a subject that identifies what you need to know.

People here are more likely to read/respond to a topic that they are interested in. "Please help me" fits most topics posted n the forums.

The better you identify your question, you will receive quicker (and usually better) replies.

Enjoy the forums icon_smile.gif
Back to top
View user's profile Send private message
srinivas p

New User


Joined: 11 Sep 2007
Posts: 2
Location: mysore

PostPosted: Thu Jan 17, 2008 12:57 pm
Reply with quote

hi Crag,

Thank you for ur valuable time.


hi phil,

I will not repeat this mistake i.e, missing the subject line.

Thank you

srinivas P
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 SELECT from data change table DB2 5
Search our Forums:

Back to Top