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

How to find a single character field using sql query(DB2)


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

New User


Joined: 10 Jul 2006
Posts: 47
Location: Bangalore

PostPosted: Sat Dec 16, 2006 1:32 am
Reply with quote

I have a table called NAME. In that table there is one field called FIRSTNAME. I want to retrieve the first name(field) which is has a single character ONLY.

Cheers,
Samba.
Back to top
View user's profile Send private message
DavidatK

Active Member


Joined: 22 Nov 2005
Posts: 700
Location: Troy, Michigan USA

PostPosted: Sat Dec 16, 2006 2:23 am
Reply with quote

This should get you closer:

Code:
SELECT *                           
  FROM NAME
 WHERE LENGTH(RTRIM(FIRSTNAME)) = 1



Dave
Back to top
View user's profile Send private message
sambasivarao

New User


Joined: 10 Jul 2006
Posts: 47
Location: Bangalore

PostPosted: Sat Dec 16, 2006 3:04 pm
Reply with quote

Thanks a lot David for quick response.

Cheers,
Samba.
Back to top
View user's profile Send private message
sambasivarao

New User


Joined: 10 Jul 2006
Posts: 47
Location: Bangalore

PostPosted: Mon Dec 18, 2006 2:39 pm
Reply with quote

Hi David,

Apart for this, any other options are there to get the single character of the field.

Thanks a lot in advance for your help.

Cheers,
Samba.
Back to top
View user's profile Send private message
vijju123

New User


Joined: 13 Dec 2006
Posts: 2
Location: delhi

PostPosted: Tue Dec 19, 2006 3:44 am
Reply with quote

Hai david...thanks for the answer ..would you please elaborate the query..that is..
WHERE LENGTH(RTRIM(FIRSTNAME)) = 1

what does RTRIM? STANDS FOR...

thanks in advance



cheers,
vijju.
Back to top
View user's profile Send private message
DavidatK

Active Member


Joined: 22 Nov 2005
Posts: 700
Location: Troy, Michigan USA

PostPosted: Tue Dec 19, 2006 3:52 am
Reply with quote

Hi vijju123,

It stands for Right TRIM. It trims, or removes blanks from the Right Side of the value, changing the length also.

Here's the link to the Manual


RTRIM
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 Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts To find whether record count are true... DFSORT/ICETOOL 6
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 How to append a PS file into multiple... JCL & VSAM 3
Search our Forums:

Back to Top