stevec
Member²
Is there anyway to control the formatting applied to UNION SQL's by the beautifier ?
- it generates ...
whereas I'd prefer ...
- it generates ...
Code:SELECT codevalue, codetext FROM uni7live.cncode WHERE cncode.listname = 'EHAREATM' UNION SELECT '*', '(All)' FROM uni7live.cncode UNION SELECT '^' AS codevalue, '(Not Set)' AS codetext FROM uni7live.cncode ORDER BY 2;
whereas I'd prefer ...
Code:SELECT codevalue, codetext FROM uni7live.cncode WHERE cncode.listname = 'EHAREATM' UNION SELECT '*', '(All)' FROM uni7live.cncode UNION SELECT '^' AS codevalue, '(Not Set)' AS codetext FROM uni7live.cncode ORDER BY 2;