Browse by Tags

Sorry, but there are no more tags available to filter with.
Remove duplicate characters from a string
29 December 07 05:13 AM | Madhivanan | 3 Comments   
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 = '' Read More...
Filed under: , ,