-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Which app are you using (JSON, XML, SQL):
SQL
- The steps to reproduce this issue:
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
priceDesired result:
SELECT
COUNT(price)
, price
, something_else
, more_columns
FROM
orders
WHERE
price < 70
GROUP BY
price
, something_else
, more_columns
ORDER BY
priceWhy? 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
priceReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels