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

Concatenating 3 columns of diff data types


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

New User


Joined: 26 May 2007
Posts: 45
Location: Chennai

PostPosted: Thu Oct 29, 2009 10:24 am
Reply with quote

Hi ,

Can you please let me know if I can concatenate 3 columns(2 integer type and 1 char type) and the result of combination to be used as where condition of in sub query. It should be like below. I am getting error when I use the below query.

EX:
Code:
  Select * from table1
  where
  (column1 || column2 || Column3) not in
             ( Select (column1 || column2 || column3) from table1
    where column4 not in ('A' , 'B')) with ur;
Back to top
View user's profile Send private message
Steve Davies

New User


Joined: 15 Oct 2009
Posts: 32
Location: UK

PostPosted: Thu Oct 29, 2009 10:59 am
Reply with quote

so post the error details aswell.......!
Back to top
View user's profile Send private message
bhairon singh rathore

New User


Joined: 19 Jun 2008
Posts: 91
Location: banglore

PostPosted: Thu Oct 29, 2009 12:14 pm
Reply with quote

Hi aryanpa1,

google and you can find many such links:-

publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=/com.ibm.db2.doc.sqlref/rwtco.htm
Back to top
View user's profile Send private message
GuyC

Senior Member


Joined: 11 Aug 2009
Posts: 1281
Location: Belgium

PostPosted: Thu Oct 29, 2009 1:15 pm
Reply with quote

That is a terrible query.
You should never use
Code:
where a !! b !! c in (select a !! b !! c ...)


if you really want to use 'not in' you should write
Code:
where (a,b,c) not in (select a,b,c ...)


It is very likely that a correlated subselect is more performant.
Code:
from table1 t1 where
not exists (select 1 from table1 t2 where ...
and t1.a = t2.a and t1.b = t2.b and t1.c=t2.c)
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 Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Remote Unload of CLOB Columns DB2 6
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top