Hi, What about moving the rows into an intermediate table first?
create temp table temp as SELECT A.id,B.id,C.id FROM A,B,C WHERE <conditions> LIMIT 0,1 DELETE FROM A WHERE id IN (SELECT A.id FROM temp); DELETE FROM B WHERE id IN (SELECT B.id FROM temp); DELETE FROM C WHERE id IN (SELECT C.id FROM temp); drop table temp; Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
