I need more flexible beautifier. For example, I want to have opportunity put a end-bracket on next line after end line with code text and fisrt line with code in sub-query must be in new line after start-bracket, like this:
I need to have opportunity split comma with next word in block select query, like this:
I want to have hint and first field in block-select query be aligned, like this:
SQL:
select t.*
from MyTable t
where t.sCode in (
select st.sMasterCode
from SecondTable st
)
I need to have opportunity split comma with next word in block select query, like this:
SQL:
select t.id
, t.sCode
, t.sText
from MyTable t
I want to have hint and first field in block-select query be aligned, like this:
SQL:
select t.*
from MyText t
where t.sCode in (
select --+Cardinality(ids 1)
column_value
from table(idArray) ids
)