You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SQL standard syntax allows arbitrary depth of nesting in parentheses.
An example of a query that doesn't work without this syntax change:
selectc.customer, ctr.currencyfrom ((
customer c inner join country ctr
onc.country=ctr.country
))
Obviously, the error can be solved by removing a level of parentheses, but I have seen tools generate similar queries, expecting arbitrary nesting to work.
The current syntax allows only a single level of parentheses around joined tables, but the SQL:2016 syntax is:
A simple syntax change allows this (I'll push a pull request shortly).
The text was updated successfully, but these errors were encountered: