We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LEFT/RIGHT
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if you try to do a ANTI JOIN without <LEFT|RIGHT> ANTI, it treats ANTI as an alias for the table instead of an anti join
ANTI JOIN
<LEFT|RIGHT> ANTI
ANTI
example query. This works fine in duckdb.
SELECT * from table1 ANTI JOIN table2 t2 on t1.id = t2.id
Full Example.
use sqlparser::dialect::GenericDialect; use sqlparser::parser::Parser; fn main() { let sql = r#" SELECT * from table1 ANTI JOIN table2 t2 on t1.id = t2.id "#; let dialect = GenericDialect {}; let ast = Parser::parse_sql(&dialect, sql).unwrap(); println!("AST: {:?}", ast); }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
if you try to do a
ANTI JOIN
without<LEFT|RIGHT> ANTI
, it treatsANTI
as an alias for the table instead of an anti joinexample query. This works fine in duckdb.
Full Example.
The text was updated successfully, but these errors were encountered: