Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How can we truncate/update the column values of selected rec

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
vindeee

New User


Joined: 29 Jun 2005
Posts: 2

PostPosted: Wed Jun 29, 2005 11:14 pm    Post subject: How can we truncate/update the column values of selected rec
Reply with quote

For example, I have a column store where the values are of 4 digit and 5 digit values

STORE
====
100
2328
23456
222
2889
43754

I have to update the table like this.

STORE
====
100
2328
2345
222
2889
4375

Please help me do this using update SQL?
Back to top
View user's profile Send private message
References
somasundaran_k

Active User


Joined: 03 Jun 2003
Posts: 141

PostPosted: Thu Jun 30, 2005 2:17 am    Post subject:
Reply with quote

vindeee

Try this out.
Code:

UPDATE your.table
SET STORE= CONCAT (SUBSTR(STORE,1,4),' ')   
;



hth
-Som
Back to top
View user's profile Send private message
vindeee

New User


Joined: 29 Jun 2005
Posts: 2

PostPosted: Thu Jun 30, 2005 10:05 am    Post subject: Re: How can we truncate/update the column values of selected
Reply with quote

The datatype of store is numeric and not character. So usage of substring will result in sqlerror -171.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1