How to remove indentation for WITH clause?
Answered
Hello,
I would like to remove indentation before my with clause and also add alias on the same line like ending parenthesis of the previous WITH clause. I couldn't find a way how to configure this. Please help.
Desired format:
WITH O as (
select id as org_id, name, description, another_field
from all_organizations
natural join all_names
where status >= 1
), P as (
select id as per_id, name_0, name_1, name_2, name_3
from all_personnel
natural join all_names
where status >= 1
), C as (
select org_id, per_id, note
from all_contacts
where status >= 1
)

Please sign in to leave a comment.
It's impossible at the moment. Please fill up feature request on our tracker.