mirror of
https://github.com/sqlfluff/sqlfluff
synced 2025-12-17 19:31:32 +00:00
15 lines
240 B
SQL
15 lines
240 B
SQL
-- Unexpected Join Fail
|
|
-- https://github.com/sqlfluff/sqlfluff/issues/163
|
|
SELECT
|
|
data.id
|
|
FROM
|
|
data
|
|
JOIN
|
|
data_max
|
|
ON
|
|
data.event_id = data_max.event_id
|
|
LEFT JOIN
|
|
"other_db"."other_data" AS od
|
|
ON
|
|
od.fid = data_max.fid
|