I have a nvarchar column in a table that contains the character % in its text, i want to remove or substring this character from this text, is there any way to do that
thanks in advance,
Maged
I have a nvarchar column in a table that contains the character % in its text, i want to remove or substring this character from this text, is there any way to do that
thanks in advance,
Maged
If you want it from the query, then you can do this
SELECT REPLACE(columnName, '%', '') AS TrimmedValue