Hello,
Using PL/SQL Beautifier, I would like to have each condition in where clause of a select statement to come in a different line. How can I do it?
Eg:
Original query
select *
from table a
where and and ;
desired format:
select *
from table a
where and
and
;