What I am trying to do is query the database and have it return the orders. This integer was mistakenly inserted as negative. So I would like to take the abs() of it and reinsert it as positive. I don't think MySQL can do this but this is how I have written the query. I am searching for alternate methods. (If this is not possible I will simply use PHP). Thank you.
Edited with: This should update more then one row.
UPDATE `users` SET `orders` = (SELECT abs(orders)
FROM `users` WHERE count1 = 5) WHERE count1 = 5;