Is it possible to create a plug-in or macro for UltraEdit to beautify the SQL codes like the T-SQL Formatter does?
It will automatically format the messy SQL codes into clean and readable format.
Change from:
To:
It will automatically format the messy SQL codes into clean and readable format.
Change from:
Code: Select all
SELECT X,Y,Z FROM FOO;
Code: Select all
SELECT
X,
Y,
Z
FROM
FOO
;