Hello,
Does anyone know if there's any application or anything that can tidy up my SQL syntax?
For example I have the following code
select column1, column2 from schema1.something
I'm expecting the tool to have an ability to tidy up the code to be as follows
SELECT
[column1],
[column2]
FROM [schema1].[something]
Thanks and have a good day.
No comments:
Post a Comment