in

SQL Server Blogs

Voices from the UK SQL Server Community

Browse by Tags

  • 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 = '' select @result = @result + min ( substring ( @string...
    Posted to Madhivanan (Weblog) by Madhivanan on Sat, Dec 29 2007
Page 1 of 1 (1 items)
Powered by Community Server (Commercial Edition), by Telligent Systems