Browse by Tags

All Tags » T-sql » Remove duplicates (RSS)

Remove duplicate characters from a string

Pinal Dave in his weblog posted about Remove Duplicate Chars From String Here is its alternate method with Number table approach create procedure remove_duplicate_characters ( @string varchar ( 100 )) as Declare @result varchar ( 100 ) set @result = ...
Posted by Madhivanan | with no comments