2014-02-20 93 views

回答

0

嘗試......

UPDATE TableName 
SET FieldName = replace(FieldName, 'old', 'new') 
0

MSDN說:

REPLACE (string_expression , string_pattern , string_replacement) 

所以,你可以使用:

REPLACE (colname , '16;' , '') 
相關問題