Hi,
It seems that with the most recent version all FROM statements
that have joins have started to need parentheses.
SELECT *
FROM
A
LEFT JOIN B ON A.X = B.WHATEVER
JOIN C ON B.FOO = C.BAR
WHERE EXPRESSION
Does not work
But starts to work when adding parentheses
SELECT *
FROM (
A
LEFT JOIN B ON A.X = B.WHATEVER
JOIN C ON B.FOO = C.BAR
)
WHERE EXPRESSION
But Instead of throwing exception it just seems to drop the joins away
SELECT *
FROM
A
WHERE EXPRESSION
Haven't studied this thoroughly but just wanted to give a heads up.
- rami
--
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.