-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

4

1 回答 1

9
UPDATE TableName SET ColumnName = REPLACE(ColumnName,'%','')
于 2013-06-19T15:15:29.433 回答