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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top