ChatGPT解决这个技术问题 Extra ChatGPT

MySQL Error 1093 - Can't specify target table for update in FROM clause

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 executing:

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?


C
Community

Update: This answer covers the general error classification. For a more specific answer about how to best handle the OP's exact query, please see other answers to this question

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

Maybe you can just join the table to itself

If the logic is simple enough to re-shape the query, lose the subquery and join the table to itself, employing appropriate selection criteria. This will cause MySQL to see the table as two different things, allowing destructive changes to go ahead.

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

Alternatively, try nesting the subquery deeper into a from clause ...

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.

... but watch out for the query optimiser

However, beware that from MySQL 5.7.6 and onward, the optimiser may optimise out the subquery, and still give you the error. Luckily, the optimizer_switch variable can be used to switch off this behaviour; although I couldn't recommend doing this as anything more than a short term fix, or for small one-off tasks.

SET optimizer_switch = 'derived_merge=off';

Thanks to Peter V. Mørch for this advice in the comments.

Example technique was from Baron Schwartz, originally published at Nabble, paraphrased and extended here.


Upvoted this answer because I had to delete items and could not get info from another table, had to subquery from same table. Since this is what pops up on top while googling for the error I got this would be the best fit answer for me and a lot of people trying to update while subquerieing from the same table.
@Cheekysoft, Why not save the values into variables instead?
@PeterV.Mørch Following mysqlserverteam.com/derived-tables-in-mysql-5-7, in case certain operations are carried out, merging cannot happen. E.g. provide the derived dummy table with a LIMIT (to inifity) and the error will never occur. That's pretty hackish though and there is still the risk that future versions of MySQL will support merging queries with LIMIT after all.
Can you, please, provide a full example about this workaround? UPDATE tbl SET col = ( SELECT ... FROM (SELECT.... FROM) AS x); i'm still getting errors
INNER JOIN Work for me :)
P
Positive Navid

NexusRex provided a very good solution for deleting with join from the same table.

If you do this:

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

you are going to get an error.

But if you wrap the condition in one more select:

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
)

it would do the right thing!!

Explanation: The query optimizer does a derived merge optimization for the first query (which causes it to fail with the error), but the second query doesn't qualify for the derived merge optimization. Hence the optimizer is forced to execute the subquery first.


Maybe it's because I'm in a bind today, but this was the easiest answer, even if it's maybe not the "best" one.
This worked great, thanks! So what's the logic here? If it's nested one more level then it will be executed before the outer part? And if it's not nested then mySQL tries to run it after the delete has a lock on the table?
This error and solution make no logical sense...but it works. Sometimes I wonder what drugs the MySQL devs are on...
Agree with @Cerin.. this is completely absurd, but it works.
@ekonoval Thanks you for the solution but It does not make the minimum sense for me, looks like you is fooling MySQL and he accept it, lol
A
Andy

Recently i had to update records in the same table i did it like below:

UPDATE skills AS s, (SELECT id  FROM skills WHERE type = 'Programming') AS p
SET s.type = 'Development' 
WHERE s.id = p.id;

Can't this just be written as UPDATE skills SET type='Development' WHERE type='Programming'; ? This doesn't seem to be answering the original question.
Seems like overkill, @lilbyrdie is correct - it could only be UPDATE skills SET type='Development' WHERE type='Programming';. I do not understand why so many people is not thinking about what they do...
this is the best answer here, IMHO. It's syntax is easy to understand, you can re-use your previous statement and it's not limited to some super specific case.
Even if the example case is questionable, the principle is the best to understand and deploy in real-world scenarios. The shown query works because implicit join in table list creates a temporary table for a subquery, thus providing stable results and avoiding clash between retrieval and modification of the same table.
regardless of what anyone might say about this being overkill, it still answers the question in terms of the title. The error which the OP mentioned is also encountered when a update is attempted using the same table in a nested query
m
matiaslauriti

The inner join in your sub-query 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 that:

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);

This should be the top answer! Maybe delete the first "instead of".
I think DISTINCT is unnecessary here - for a better performance ;).
I must be crazy. The answer is the same as what was stated in the original.
This is the answer for me also. Don't where in on the ID column, so you dont need to subquery the primary table.
@JeffLowery - the first code block is the answer here; its the second code block that is from the question.
S
Sequoya

If you can't do

UPDATE table SET a=value WHERE x IN
    (SELECT x FROM table WHERE condition);

because it is the same table, you can trick and do :

UPDATE table SET a=value WHERE x IN
    (SELECT * FROM (SELECT x FROM table WHERE condition) as t)

[update or delete or whatever]


Most understandable and logical implementation of all of the above answers. Simple and to the point.
This has become part of my workflow now. Get stuck on this error, head over to this answer and rectify the query. Thanks.
Gonna use this trick for everything now. Mind blown o_o
Great trick.Simple but useful
N
NexusRex
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
)

Can you explain why this works, why just nesting one more level works? This question has been asked already as a comment to @EkoNoval's question but nobody responded. Maybe you can help.
@AkshayArora, Go through the part under the heading 'Maybe you can just join the table to itself' in @Cheekysoft's answer. He said UPDATE tbl AS a INNER JOIN tbl AS b ON .... SET a.col = b.col - this would work as a different alias for the same table is used here . Similarly in @NexusRex's answer the first SELECT query acts as a derived table into which story_category is used for the second time. So the error mentioned in the OP should not take place here, right ?
s
sactiw

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.


@anonymous_reviewer: In case of giving [-1] or even [+1] to someone's comment please also mention why have you given it. Thanks!!!
-1 because this is incorrect. You can't modify the same table that you use in the SELECT statement.
@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!!!
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 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.
W
Will B.

For the specific query the OP is trying to achieve, the ideal and most efficient way to do this is NOT to use a subquery at all.

Here are the LEFT JOIN versions of the OP's two queries:

SELECT s.* 
FROM story_category s 
LEFT JOIN category c 
ON c.id=s.category_id 
WHERE c.id IS NULL;

Note: DELETE s restricts delete operations to the story_category table.
Documentation

DELETE s 
FROM story_category s 
LEFT JOIN category c 
ON c.id=s.category_id 
WHERE c.id IS NULL;

Surprised this doesn't have more up-votes. It should also be noted that the multi-table syntax also works with UPDATE statements and joined sub-queries. Allowing you to perform LEFT JOIN ( SELECT ... ) as opposed to WHERE IN( SELECT ... ), making the implementation useful across many use-cases.
S
S.Roshanth

The simplest way to do this is use a table alias when you are referring parent query table inside the sub query.

Example :

insert into xxx_tab (trans_id) values ((select max(trans_id)+1 from xxx_tab));

Change it to:

insert into xxx_tab (trans_id) values ((select max(P.trans_id)+1 from xxx_tab P));

Y
YonahW

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.


b
briankip

According to the Mysql UPDATE Syntax linked by @CheekySoft, it says right at the bottom.

Currently, you cannot update a table and select from the same table in a subquery.

I guess you are deleting from store_category while still selecting from it in the union.


l
lipika chakraborty

Try to save result of Select statement in separate variable and then use that for delete query.


S
Sameer Khanal

try this

DELETE FROM story_category 
WHERE category_id NOT IN (
SELECT DISTINCT category.id 
FROM (SELECT * FROM STORY_CATEGORY) sc;

T
Tom Schaefer

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.


And you've just lost all your foreign keys, and maybe you have some cascading deletes, too.
May be you can use this trick, but updating the original table instead of the new table, so you don't need to do the rename trick...
M
Melvin Angelo Jabonillo

how about this query hope it helps

DELETE FROM story_category LEFT JOIN (SELECT category.id FROM category) cat ON story_category.id = cat.id WHERE cat.id IS NULL

The result shows : ' #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LEFT JOIN (SELECT categories.id FROM categories) cat ON story_category.id = cat.' at line 1 '
When using multi-table delete you must specify the affected tables. DELETE story_category FROM ... however, the joined sub-query is not necessary in this context and can be performed using LEFT JOIN category AS cat ON cat.id = story_category.category_id WHERE cat.id IS NULL, Note the join criteria in the answer incorrectly references story_category.id = cat.id
G
GMB

As far as concerns, you want to delete rows in story_category that do not exist in category.

Here is your original query to identify the rows to delete:

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

Combining NOT IN with a subquery that JOINs the original table seems unecessarily convoluted. This can be expressed in a more straight-forward manner with not exists and a correlated subquery:

select sc.*
from story_category sc
where not exists (select 1 from category c where c.id = sc.category_id);

Now it is easy to turn this to a delete statement:

delete from story_category
where not exists (select 1 from category c where c.id = story_category.category_id);    

This quer would run on any MySQL version, as well as in most other databases that I know.

Demo on DB Fiddle:

-- set-up
create table story_category(category_id int);
create table category (id int);
insert into story_category values (1), (2), (3), (4), (5);
insert into category values (4), (5), (6), (7);

-- your original query to identify offending rows
SELECT * 
FROM  story_category 
WHERE category_id NOT IN (
    SELECT DISTINCT category.id 
    FROM category INNER JOIN 
       story_category ON category_id=category.id);
| category_id |
| ----------: |
|           1 |
|           2 |
|           3 |
-- a functionally-equivalent, simpler query for this
select sc.*
from story_category sc
where not exists (select 1 from category c where c.id = sc.category_id)
| category_id |
| ----------: |
|           1 |
|           2 |
|           3 |
-- the delete query
delete from story_category
where not exists (select 1 from category c where c.id = story_category.category_id);

-- outcome
select * from story_category;
| category_id |
| ----------: |
|           4 |
|           5 |