How you do this depends on what the data type of the column is. You can find out what the data type is using this query:SELECT DATA_TYPE FROM INFORMATION_SCHEMA.[COLUMNS]
WHERE TableName = 'Clusters' AND COLUMN_NAME = 'model';
If it is a numeric data type (such as INT, FLOAT, DECIMAL etc.), you would do the following:UPDATE clusters SET model = -model;
If it is character type (such as VARCHAR, CHAR, NVARCHAR etc.), you would do the following:UPDATE Clusters SET
model =
CASE
WHEN model LIKE '+%' THEN REPLACE(model,'+','-')
ELSE REPLACE(model,'-','+')
END;