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

Syntax Problem in union query


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

Active User


Joined: 18 Oct 2005
Posts: 182
Location: Luton UK

PostPosted: Mon Sep 17, 2007 6:02 pm
Reply with quote

hi,

I am trying to do union of two queries, but i am facing syntax problem

please correct the following query

SELECT * FROM
(SELECT ABC,DEF FROM X.TABLE1
WHERE ABC=313742
UNION ALL
SELECT ABC,DEF FROM X.TABLE2
WHERE ABC=825748 AS TEMP1)
TEMP1 ;

Thanks in advance

Regards
JR
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: Mon Sep 17, 2007 6:23 pm
Reply with quote

Hello,

Do not use "Urgent" in a topic title. One way or another most of the topics are "urgent".

Please post some sample data and the result you want when your query executes.
Back to top
View user's profile Send private message
guptae

Moderator


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

PostPosted: Mon Sep 17, 2007 6:28 pm
Reply with quote

Hi There,

Please give

Code:
SELECT ABC,DEF FROM X.TABLE1
WHERE ABC=313742
UNION ALL
SELECT ABC,DEF FROM X.TABLE2
WHERE ABC=825748
Back to top
View user's profile Send private message
rajandhla

Active User


Joined: 18 Oct 2005
Posts: 182
Location: Luton UK

PostPosted: Mon Sep 17, 2007 8:08 pm
Reply with quote

Thanks Ekta...

Is the query will work when i select quallified rows by doing check(condition) on mulitiple tables

like where x.a=y.a and
y.b=Z.b
Z.c=x.c..etc

on union is it possible.

Please let me know thanks..
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Tue Sep 18, 2007 8:13 am
Reply with quote

rajandhla,

Quote:
on union is it possible.

you dont wanna do that with Union, if indeed you wanna select records for same values for any column you dont need Union.

May be, if you post your specific requirements we can help better.
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 PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
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
Search our Forums:

Back to Top