Ability to indent table name in FROM clause but have JOINS on same level as FROM
I like for format my SQL like this...
----SELECT
--------1
----FROM
--------apple AS a
----INNER JOIN
--------banana AS b
------------ON a.FruitID = b.FruitID
----LEFT OUTER JOIN
--------lemon AS l
------------ON l.FruitID = l.FruitID
----WHERE
...
But the closest I can get it to do automatically is this....
----SELECT
--------1
----FROM
----apple AS a
----INNER JOIN
--------banana AS b
------------ON a.FruitID = b.FruitID
----LEFT OUTER JOIN
--------lemon AS l
------------ON l.FruitID = l.FruitID
----WHERE
How can I get the table name in the FROM clause to indent one level further?