Workaround for MySQL’s “can’t specify target table for update in FROM clause” Error

0
309

jOOQ workaround for "can't specify target table for update in FROM clause"

In MySQL, you cannot do this:

create table t (i int primary key, j int);
insert into t values (1, 1);

update t
set j = (select max(j) from t) + 1;

The UPDATE statement will raise an error as follows:

SQL Error [1093] [HY000]: You can’t specify target table ‘t’ for update in FROM clause

People have considered this to be a bug in MySQL for ages, as most other RDBMS can do this without any issues, including MySQL clones:

  • MariaDB 10.2
  • SingleStore 6 (previously known as MemSQL)

Luckily, jOOQ can easily transform such queries for you, whenever you’re trying to UPDATE or DELETE a target table, with a predicate that depends on the target table itself. In those cases, jOOQ will just apply the following workaround:

update t
set j = (
  select *
  from (
    select max(j) from t
  ) t
) + 1;

Now, the query works without any syntactic issues. Similar workarounds are documented in the MySQL docs, but with jOOQ, you simply don’t have to think about this limitation.

Published by lukaseder

I made jOOQ

Sponsorizzato
Sponsorizzato
Sponsorizzato
Cerca
Virtualbook
CDN FREE
Categorie
Leggi tutto
Food
Flavonoids Market Size and Share Outlook: Industry Overview and Forecast to 2032
Flavonoids Market Overview: The extraction of the plants was known as flavonoids. It was...
By Cassie Tyler 2024-10-31 09:18:52 0 498
Altre informazioni
Hotel Gift Cards Market Trends, Growth Drivers & Regional Insights - Forecast 2032
Hotel Gift Cards Market Overview: The global Hotel Gift Cards Market has witnessed significant...
By Cassie Tyler 2024-11-25 07:27:03 0 417
Live Stream
Live streaming
By Drago Merkaš 2025-01-25 13:05:43 0 374
Art
**Outright Games’in Yönetimi: Gerçekten Para Kaybetmiyorlar, Daha Az Kazanıyorlar!**
## Giriş Oyun dünyasında skandallar asla bitmez! En son Outright Games’ten gelen haberler, oyun...
By Batu Tuna 2025-08-03 17:05:39 1 34
Altre informazioni
Innovation and Competitive Insights into the Healthcare Mobile Robots Market
The global Healthcare Mobile Robots Market size, valued at USD 3.91 billion in 2023, is projected...
By MAYUR YADAV 2025-09-02 12:02:11 0 26
Sponsorizzato
Virtuala FansOnly https://virtuala.site