Feb 3, 2005 #1 james0816 Programmer Jan 9, 2003 295 US I am pulling data in as "000050". I want to trim those leading zero's to be "50". how do you do this using SQL? thx
I am pulling data in as "000050". I want to trim those leading zero's to be "50". how do you do this using SQL? thx
Feb 3, 2005 #2 r937 Technical User Jun 30, 2002 8,847 CA SELECT TRIM(LEADING '0' FROM thecolumn) ... rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts March 6 2005) Upvote 0 Downvote
SELECT TRIM(LEADING '0' FROM thecolumn) ... rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts March 6 2005)