Thijs Blaauw
Member
Is it possible to configure the beautifier so that AND's in the WHERE clause start on a new line.
For example:
select *
from a
where x = 1
and y = 2;
instead of:
select *
from a
where x = 1 and y = 2;
or
select *
from a
where x = 1 and
y = 2;
which now seems the default?
Regards,
Thijs Blaauw
For example:
select *
from a
where x = 1
and y = 2;
instead of:
select *
from a
where x = 1 and y = 2;
or
select *
from a
where x = 1 and
y = 2;
which now seems the default?
Regards,
Thijs Blaauw