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

Need an Sql Query


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

New User


Joined: 06 Nov 2007
Posts: 84
Location: bangalore

PostPosted: Tue Sep 09, 2008 7:36 pm
Reply with quote

Hi,

Can anyone let me know the query for the below mentioned details,

Examine the details in the EMPLOYEES and DEPARTMENTS tables.

EMPLOYEES
LAST_Name Dept _id, sallary
Getz 10 10000
Davis 20 20000
King 20 20232
Davis 30 71611
Kochhar 30 17181

DEPARTMENTS
DEPARTMENT_ID DEPARTMENT_NAME
10 Sales
20 Marketing
30 Accounts
40 Administration

Write a SQL query to retrieve all employees (with the department names if applicable), whether or not they have matching departments in the departments
table.

Output will contain these columns
LAST_Name and DEPARTMENT_Name


Thanks.
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Tue Sep 09, 2008 8:42 pm
Reply with quote

Hello Kumar,

You can use below query to acheive it

Code:
SELECT LAST_NAME   
          , DEPARTMENT_NAME
 FROM EMPLOYEE E  LEFT OUTER JOIN DEPARTMENT D
     ON E.DEPT_ID= D.DEPARTMENT_ID       

;
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