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
SELECT a.n, a.m, b.y, b.z
FROM (
SELECT m, n
FROM table1
WHERE col1 = 'value1'
) a
JOIN (
SELECT x, y, z
FROM table2
WHERE col1 = 'value1'
) b
ON a.m = b.x
;
The text was updated successfully, but these errors were encountered:
panekj
pushed a commit
to panekj/tree-sitter-sql
that referenced
this issue
Jun 21, 2024
The text was updated successfully, but these errors were encountered: