v.20.7Improvement
Allow Standardized JOIN Syntax: Use LEFT SEMI JOIN Instead of SEMI LEFT JOIN
Allow to set JOIN kind and type in more standad way:LEFT SEMI JOINinstead ofSEMI LEFT JOIN. For now both are correct. #12520 (Artem Zuikov).
Why it matters
This feature improves SQL syntax consistency by aligning with common SQL standards for JOIN clause ordering, making queries easier to read and write for users familiar with standard SQL conventions.How to use it
Users can write JOIN clauses with theJOIN kind and type in the standard order, for example:SELECT * FROM table1 LEFT SEMI JOIN table2 ON table1.id = table2.idBoth this new standard syntax and the former alternative are valid.