Is there a way to change how the SQL Editor formats source? I’d like to keep it from adding line breaks in a list.
Instead of:
WHERE AXDUST='V'
AND AXKPDT!=0
AND
(
AXBFCD IN
(
'AJ',
'AJM',
'ST'
)
)
I’d like for it to do this:
WHERE AXDUST='V'
AND AXKPDT!=0
AND
(
AXBFCD IN
(
'AJ', 'AJM', 'ST'
)
)
When you’re using a long list of items in an IN clause, formatting the source makes the listing quite long and difficult to manage.
Thanks,
Curt