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

0
441

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

Sponsor
Sponsor
Sponsor
Sponsor
Sponsor
Zoeken
Sponsor
Virtuala FansOnly
CDN FREE
Cloud Convert
Categorieën
Read More
Art
**Это афиша Диады Каталонии 2025 года**
## Введение Генеральный совет Каталонии представил официальную афишу Диады Национальной...
By ليديا لاريسا 2025-09-04 14:05:26 1 282
Art
2025 वन हर्ट्ज चैलेंज: औद्योगिक रिले का इस्तेमाल करके एक फ्लैशर बनाना
औद्योगिक रिले, फ्लैशर, 2025 चैलेंज, इलेक्ट्रॉनिक्स, माइक्रोकंट्रोलर, 555 टाइमर, तकनीकी मजेदार,...
By Seema Vandana 2025-08-10 16:05:32 1 214
Wellness
Struggling with Online Classes? Here’s the Help You Need
Struggling with Online Classes? Here’s the Help You Need   Managing online classes...
By Kenneth Nelson 2025-06-26 13:30:26 0 574
Food
What Challenges and Opportunities Exist in the Global Ready-to-Drink Market?
Ready To Drink Market Overview: Apart from exercising, individuals are careful of what they eat...
By Cassie Tyler 2025-06-07 05:27:28 0 561
Health
Why Writink Services is the Best Choice for Online Writing Services
Academic Success Simplified: How Professional Services Help Students Excel In today’s...
By James John 2025-08-22 13:30:38 0 563
Sponsor
Virtuala FansOnly https://virtuala.site