need negative values

sueviolet

Registered User.
Local time
Today, 00:41
Joined
May 31, 2002
Messages
127
I have a field which contains positive numeric values (122)

I need to change all the records in this field so they are negative (-122)



How do I do this?
 
Try an update query
Code:
UPDATE theTablename SET [aNumber] = [aNumber] * -1
 

Users who are viewing this thread

Back
Top Bottom