up vote 50 down vote favorite
11
share [g+] share [fb]

I have a table *story_category* in my database with corrupt entries. The next query returns the corrupt entries.

SELECT * FROM  story_category WHERE category_id NOT IN (
SELECT DISTINCT category.id FROM category INNER JOIN story_category ON category_id=category.id);

I tried to delete them excuting:

DELETE FROM  story_category WHERE category_id NOT IN (
SELECT DISTINCT category.id FROM category INNER JOIN story_category ON category_id=category.id);

but I get the next error:

#1093 - You can't specify target table 'story_category' for update in FROM clause

How can I overcome this?

link|improve this question

60% accept rate
feedback

9 Answers

up vote 75 down vote accepted

In MySQL, you can't modify the same table which you use in the SELECT part.
This behaviour is documented at: http://dev.mysql.com/doc/refman/5.6/en/update.html

You will need to stop using the nested subquery and execute the operation in two parts, or alternatively use a simple where clause.

Below is from Baron Schwartz, published at Nabble:

However, you can do multi-table updates like this:

UPDATE tbl AS a
  INNER JOIN tbl AS b ON ....
  SET a.col = b.col

If you absolutely need the subquery, there's a workaround, but it's ugly for several reasons, including performance:

UPDATE tbl SET col = (
  SELECT ... FROM (SELECT.... FROM) AS x);

The nested subquery in the FROM clause creates an implicit temporary table, so it doesn't count as the same table you're updating.

link|improve this answer
Could have just saved myself half an hour of angst if I'd read this first. – nedlud Jul 12 '11 at 1:45
1  
This would have been more helpful if it included an example of what to do with Sergio's query. – NexusRex Dec 23 '11 at 19:39
feedback

The inner join in your subquery is unnecessary. It looks like you want to delete the entries in story_category where the category_id is not in the category table.

Instead of this:

DELETE FROM  story_category WHERE category_id NOT IN (SELECT DISTINCT
category.id FROM category INNER JOIN
story_category ON
category_id=category.id);

Do this:

DELETE FROM  story_category WHERE category_id NOT IN (SELECT DISTINCT
category.id FROM category);
link|improve this answer
This should be the top answer! Maybe delete the first "instead of". – hoyhoy Sep 7 '10 at 17:35
and fix the code block – hoyhoy Sep 7 '10 at 17:35
feedback

This is what I did for updating a Priority column value by 1 if it is >=1 in a table and in its WHERE clause using a subquery on same table to make sure that at least one row contains Priority=1 (because that was the condition to be checked while performing update) :


UPDATE My_Table
SET Priority=Priority + 1
WHERE Priority >= 1
AND (SELECT TRUE FROM (SELECT * FROM My_Table WHERE Priority=1 LIMIT 1) as t);

I know it's a bit ugly but it does works fine.

link|improve this answer
@anonymous_reviewer: In case of giving [-1] or even [+1] to someone's comment please also mention why have you given it. Thanks!!! – sactiw Dec 20 '10 at 16:42
-1 because this is incorrect. You can't modify the same table that you use in the SELECT statement. – Chris Jan 27 '11 at 20:10
@Chris I have verified it on MySQL and it works just fine for me so I would request you to please verify it at your end and then claim it to be correct or incorrect. Thanks!!! – sactiw Feb 18 '11 at 15:03
At the bottom of this page it says 'Currently, you cannot update a table and select from the same table in a subquery.' - and I have experienced this to be true on many occasions. dev.mysql.com/doc/refman/5.0/en/update.html – Chris Feb 19 '11 at 0:08
6  
@Chris I know that, but there is a workaround for that and which is exactly what I have tried to show with my 'UPDATE' query and believe me it works just fine. I don't think you have really tried to verify my query at all. – sactiw Feb 21 '11 at 13:39
feedback

If something does not work, when coming thru the front-door, then take the back-door:

drop table if exists apples;
create table if not exists apples(variety char(10) primary key, price int);

insert into apples values('fuji', 5), ('gala', 6);

drop table if exists apples_new;
create table if not exists apples_new like apples;
insert into apples_new select * from apples;

update apples_new
    set price = (select price from apples where variety = 'gala')
    where variety = 'fuji';
rename table apples to apples_orig;
rename table apples_new to apples;
drop table apples_orig;

It's fast. The bigger the data, the better.

link|improve this answer
feedback

You could insert the desired rows' ids into a temp table and then delete all the rows that are found in that table.

which may be what @Cheekysoft meant by doing it in two steps.

link|improve this answer
feedback

A workaround is in How to select from an update target in MySQL.

link|improve this answer
feedback
DELETE FROM story_category
WHERE category_id NOT IN (
    SELECT cid FROM (
        SELECT DISTINCT category.id AS cid FROM category INNER JOIN story_category ON category_id=category.id
    ) AS c
)
link|improve this answer
feedback

In case of deleting a duplicate record from a table you can use the query below.

select duplicate_rows.*
from test as bad_rows
   inner join (
      select day, MIN(id) as min_id from test group by day having count(*) > 1
   ) as good_rows on good_rows.day = duplicate_rows.day and good_rows.min_id <> duplicate_rows.id;
link|improve this answer
feedback

Whenever you can go round a join, then do so. Even if you sometimes need to denormalize your schema, then do so...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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