tree-sitter-sql icon indicating copy to clipboard operation
tree-sitter-sql copied to clipboard

ERROR Parsing JOIN

Open zxdxjtu opened this issue 1 year ago • 0 comments

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
;

image

zxdxjtu avatar Dec 12 '23 06:12 zxdxjtu