Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
                  );
share|improve this question

3 Answers

You can rewrite that query as such:

UPDATE    orders
    SET   order_id = '10000'
    WHERE user_id = 4
    ORDER BY order_id DESC
    LIMIT 1;

If your criteria are more complicated than this then the workaround would be aliasing a temporary result-set as Usman Tiono pointed out.

share|improve this answer
My DB admin will never let this through, but this will work properly. nice one! :) – Gershon Herczeg Aug 2 '12 at 16:38
Why would your DBA not let this through? It's not a resource muncher. – Mihai Stancu Aug 2 '12 at 16:42

Try to use this :

UPDATE orders SET order_id = '10000'
WHERE order_id = (SELECT tmp.order_id FROM (SELECT MAX(order_id) order_id FROM orders WHERE user_id = 4) AS tmp);

What you need is to give an alias for your subquery.

share|improve this answer
1  
If you want to get the MAX of the entire table there is no need for grouping. It's implicitly grouped by PK. – Mihai Stancu Aug 2 '12 at 16:35
Whoops you are right. Thanks for pointing this out. – Usman Tiono Aug 2 '12 at 16:37
This part wont work properly:SELECT tmp.order_id FROM (SELECT MAX(order_id) order_id FROM orders WHERE user_id = 4) AS tmp – Gershon Herczeg Aug 2 '12 at 16:37
Have you tried it? I've tried this many times and it works. – Usman Tiono Aug 2 '12 at 16:44
up vote 0 down vote accepted

Here is the solution which ended up working for me:

UPDATE `orders`
   SET order_id = '10000'
 WHERE order_id IN(SELECT MAX(order_id) 
       FROM (SELECT order_id 
        FROM `orders` WHERE user_id = 4)
        tmp);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.