Using mysql I am trying to update a table while using a criteria based on a select from the same table. Here is the error i am getting when running the update: 'You can't specify target table 'orders' for update in FROM clause'
Here is the query which i am running
UPDATE `orders`
SET order_id = '10000'
WHERE order_id = (SELECT MAX(order_id)
FROM `orders`
WHERE user_id = 4
);