Hi, I have a suggestion for adding a "indent AND/OR in AND/OR condition" option, please and the features if you agree with it, thanks
Example:
-- origin code:
select * from tables
where 1=1 and (2=2 or (3=3 and 4=4 and 5=5))
;
-- now formatted:
SELECT
*
FROM TABLES
WHERE 1 = 1
AND(2 = 2
OR(3 = 3
AND 4 = 4
AND 5 = 5 ) )
;
-- hope: add a "indent AND/OR in AND/OR condition" option
SELECT
*
FROM TABLES
WHERE 1 = 1
AND(2 = 2
OR(3 = 3
AND 4 = 4
AND 5 = 5 ) )