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

Delimiter in the sql query


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

New User


Joined: 21 Feb 2007
Posts: 72
Location: US

PostPosted: Thu May 20, 2010 11:49 am
Reply with quote

Hi,

I have a query which is like

Select name||char(';'),panno||(';'),country||(';"),sum
from data.

When i run this query i see that whenever the panno is present the data is delimited by ';' which is as expected.
But when the panno is not present the delimiter is appearing after country as the value of panno is blank.

Can you please assit me in getting the delimiter evm when the value is blank?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu May 20, 2010 12:18 pm
Reply with quote

Stop concatenating them.

Code:

Select name
     , ';'
     , panno
     , ';'
     , country
     , ';'       
     , sum
Back to top
View user's profile Send private message
Ronald Burr

Active User


Joined: 22 Oct 2009
Posts: 293
Location: U.S.A.

PostPosted: Thu May 20, 2010 5:00 pm
Reply with quote

If memory serves me correctly, without explicitly casting literals as type CHAR, they will be treated as though they were of type VARCHAR, and so will be prefixed with a binary length field when written to the output record.
Back to top
View user's profile Send private message
GuyC

Senior Member


Joined: 11 Aug 2009
Posts: 1281
Location: Belgium

PostPosted: Fri May 21, 2010 6:04 pm
Reply with quote

it probably isn't blank but null.

null || 'blabla' is null.
'' || 'blabla' is 'blabla'

you could not concatenate them like dbz said
or use coalesce() to return '' when equal to null.

or just use the unload delimited utility
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