Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL DELETE FROM con sottoquery UNION in base alla condizione IN

Prova invece questa versione:

DELETE FROM startpoint
    WHERE id IN (select *
                 from ((SELECT id FROM stairs WHERE building = 123)
                       UNION
                      (SELECT id FROM lift WHERE building = 123)
                       UNION
                      (SELECT id FROM qrcodeid WHERE building = 123)
                )

Penso che il problema sia un problema arcano con la definizione di una sottoquery. Una sottoquery è una select dichiarazione, mentre un union è una congiunzione di select dichiarazioni.

MODIFICA:

In realtà, se vuoi l'efficienza, non useresti affatto questo approccio. Stavo solo cercando di mostrare come correggere l'errore. Una soluzione migliore sarebbe:

DELETE sp FROM startpoint sp
    WHERE EXISTS (select 1 from stairs s where s.building = 123 and s.id = sp.id) or
          EXISTS (select 1 from lift l where l.building = 123 and l.id = sp.id) or
          EXISTS (select 1 from qrcodeid q where q.building = 123 and q.id = sp.id);

Gli indici sono consigliati su stairs(id, building) , lift(id, building) e qrcodeid(id, building) .