-1

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

mBotros
  • 1,674
  • 1
  • 19
  • 39

1 Answers1

9
UPDATE TableName SET ColumnName = REPLACE(ColumnName,'%','')
Kenneth Fisher
  • 3,452
  • 17
  • 21