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
SQL
Format the default SQL (maybe with more columns):
SELECT COUNT(price), price, something_else, more_columns FROM orders WHERE price < 70 GROUP BY price , something_else , more_columns ORDER BY price
Desired result:
SELECT COUNT(price) , price , something_else , more_columns FROM orders WHERE price < 70 GROUP BY price , something_else , more_columns ORDER BY price
Why? I like it because commenting out (non-first) columns gets a lot easier.
SELECT COUNT(price) , price --, something_else --, more_columns FROM orders WHERE price < 70 GROUP BY price --, something_else --, more_columns ORDER BY price
The text was updated successfully, but these errors were encountered:
Thank you! This would be useful. We will support this 👍
Sorry, something went wrong.
No branches or pull requests
SQL
Format the default SQL (maybe with more columns):
Desired result:
Why? I like it because commenting out (non-first) columns gets a lot easier.
The text was updated successfully, but these errors were encountered: