-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

Maged Samaan
  • 1,722
  • 2
  • 19
  • 39

1 Answers1

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