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

Sponzorováno
Sponzorováno
Sponzorováno
Hledat
Virtualbook
CDN FREE
Kategorie
Číst více
Art
Il cambiamento climatico porta la legionellosi in una città vicino a te
## Introduzione L'aria si fa pesante, il sole brucia con una forza sempre più opprimente e,...
Od Laura Anna 2025-08-24 09:05:25 1 50
Art
Calendário Pokémon: aqui está a agenda para não perder nada
Pokémon, eventos, calendário, 2025, 2026, agenda, verão, realidade virtual ## Introdução Os fãs...
Od Catarina Sofia 2025-09-09 09:05:18 1 39
Art
Die Kriterien für die Auswahl virtueller Spielräume: Ein satirischer Leitfaden
## Einleitung In einer Welt, in der das echte Leben so langweilig wie ein schlechter Film ohne...
Od Luisa Maja 2025-09-12 23:05:18 1 35
Art
Google entwickelt Android XR-Brillen mit drei technologischen Superkräften!
## Ein Blick in die Zukunft: Google und seine Android XR-Brillen In einer Welt, in der die...
Od Katharina Laura 2025-09-03 15:05:20 1 53
Art
Semrush Expert Tipps: Pragmatistische Anwendungen, die Sie unbedingt ausprobieren müssen
Semrush, SEO-Tools, digitale Marketingstrategien, KI-Workflows, Reporting-Systeme,...
Od Sofia Dina 2025-08-27 21:05:35 1 41
Sponzorováno
Virtuala FansOnly https://virtuala.site