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
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
Metadata
Metadata
Assignees
Labels
No labels