2011-03-02 4 views

답변

0
update TableName set ColumnName = Replace(ColumnName, '-', ' - ') where SomeCondition ... 
1
UPDATE YourTable 
    SET YourColumn = REPLACE(YourColumn, '-', ' - ') 
관련 문제