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

Query to perform join


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

New User


Joined: 18 Dec 2008
Posts: 24
Location: Newyork

PostPosted: Fri Feb 13, 2009 1:26 pm
Reply with quote

Table 1
---------

Country region division amount
US 1001 01 300
FR 2001 01 100
IN 3001 02 200
JP 1002 01 500

Table 2
---------
Country region division division code
US 1001 01 T
FR 2001 01 P
IN 3001 02 P
JP 1002 01 T

Result
-------
Country region division amount
US 1001 01 300
JP 1002 01 500

Can someone help me to buid a query for this? The output of the 3rd table should be when country, region and division in two tables match and the division code is T.
Back to top
View user's profile Send private message
Bharath Bhat

Active User


Joined: 20 Mar 2008
Posts: 283
Location: chennai

PostPosted: Fri Feb 13, 2009 3:15 pm
Reply with quote

Code:
SELECT *
  FROM TABLE1 A
 WHERE EXISTS(SELECT 1
                FROM TABLE2 B
               WHERE A.COUNTRY = B.COUNTRY
                 AND A.REGION = B.REGION
                 AND A.DIVISION = B.DIVISION
                 AND B.CODE = 'T')
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Fri Feb 13, 2009 5:07 pm
Reply with quote

An inner join of A and B on country, region and division with a condition division = 'T' would be better than a co-related query ...
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 Use of Perform Thru Exit COBOL Programming 6
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top