>
> Hey there,
> update table1,table2 set table1.columnX=some_Value where
> table1.columnA=table2.columnA and table2.columnQ=5
maybe something like this does the job:
UPDATE
table1 A
SET
A.columnX = some_Value
WHERE
A.columnA = (
SELECT
B.columnA
FROM
table2 B
WHERE
B.columnQ=5
);
Dani
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/h2-database/-/LCbeiZWioisJ.
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.