Hello all,
I would like to format using custom format so that my queries do not break into several lines. Currently the formatter is formatting my NVL as below:
SELECT 1
FROM dual
WHERE nvl(
NULL,
0,
1
) = 0
I would like to format as below:
SELECT 1
FROM dual
WHERE NVL(NULL, 0, 1) = 0