Code formatting

keeeps

Member
Hi,
We are looking for a tool that will be able to format code in the following way:

SQL:
SELECT
       a.col1                           col_1
     , b.col2                           col_2
  FROM t1                               a
       INNER JOIN
       t2                               b
          ON b.col2                     = a.col2
 
Last edited:
As you can see, aliases and operators are aligned.
Unfortunately, PL/SQL Developer is currently not able to do that with its Beautifier.
Will you be able to add this capability?
 
Back
Top