We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be great to have option to auto indent additional condition inside JOINs. For instance, going from this
SELECT * FROM table1 t1 JOIN table2 t2 ON t2.column2 = t1.column1 AND td2.value2 > 2 AND t2.condition2 = 'true' WHERE t1.condition1 = 'false' LIMIT 10
to this
Also, it is good to control if JOINs should go on single line. For instance, from this
JOIN table ON condition1 AND condition2 AND condition3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to have option to auto indent additional condition inside JOINs.
For instance, going from this
to this
Also, it is good to control if JOINs should go on single line.
For instance, from this
to this
The text was updated successfully, but these errors were encountered: