I have the following string
áéíóú
which I need to convert it to
aeiou
How can I achieve it? (I don\'t nee
Use this function:
CREATE FUNCTION [dbo].[F_RemoveDiacritics] ( @String varchar(max) ) RETURNS varchar(max) AS BEGIN DECLARE @StringResult VARCHAR(max); select @StringResult= @String collate SQL_Latin1_General_Cp1251_CS_AS return @StringResult END