Allow JOIN statements to be indented after selecting place on new line
Currently large join sets all align with the from statement making it harder to read.
Version 3.0 is on the site
-
AdminDevart (_, Devart) commented
Sorry, it was our mistake. Formatting style like this
FROM table1
*****JOIN table2 ON
*****JOIN table3 ONwill be implemented in version 3.0
-
DH commented
There is no option to align JOIN statements like This
FROM table1
*****JOIN table2 ON ...
*****JOIN table3 ON ...You will allways get this:
FROM table1
*****JOIN table2 ON ...
**********JOIN table3 ON ...
****************JOIN table4 ON ...and this sucks IMHO
-
Dave B commented
The JOIN's should be indented but this tool seems to strip whitespace.
-
Dave B commented
Yes, but that indents each join an additional amount. I am requesting that all joins are at the same level but indented from the FROM statement.
SELECT *
FROM table1
JOIN table 2 on...
JOIN table 3 on ....