Making all values negative

B

Brendan Mather

I have a column in a table and I'd like to make all 7100 values to be
negative, what's the fastest way to do this.

thanks,
Brendan
 
R

Rick Brandt

Brendan Mather said:
I have a column in a table and I'd like to make all 7100 values to be
negative, what's the fastest way to do this.

Update query.

UPDATE YourTableName
SET YourField = Abs(YourField) * -1
 
Top