Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to trim the last "," of a String? 2

Status
Not open for further replies.

royc75

Programmer
Jun 1, 2006
127
GB
Hello,

I have a String at this format: 1,2,3,...
It's size varies, so it could be 1,2, or 1,2,3,4,5,
The String always ends with "," and I would like to trim the last ",". How can I do it using SQL Functions?
 
Code:
update datable
   set dacolumn = left(dacolumn,len(dacolumn)-1)
 where right(dacolumn,1) = ','

r937.com | rudy.ca
 
Code:
declare @test varchar(200)
set @test = '1,2,3,4,5,'
SELECT CASE WHEN RIGHT(@test,1) = ',' THEN LEFT(@Test,LEN(@test)-1) ELSE @test END

Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
 
Thank you both for the quick response!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top