Hi.
I was just wandering if there is an option somewhere to sort whatever part of my code that I have currently selected? E.g if I choose all the columns in a SELECT statement:
SELECT
Product <-- Select these 4 lines of code
Date <--
Price <--
Customer <--
From
Table
And then choose a command for "Sort alphabetically", I get the code reformatted to:
SELECT
Customer
Date
Price
Product
From
Table
If I have "hundreds" of columns in my SELECT statement, sorting the columns alphabetically can save a lot of time when going throug the resultset, looking for specific columns.
I was just wandering if there is an option somewhere to sort whatever part of my code that I have currently selected? E.g if I choose all the columns in a SELECT statement:
SELECT
Product <-- Select these 4 lines of code
Date <--
Price <--
Customer <--
From
Table
And then choose a command for "Sort alphabetically", I get the code reformatted to:
SELECT
Customer
Date
Price
Product
From
Table
If I have "hundreds" of columns in my SELECT statement, sorting the columns alphabetically can save a lot of time when going throug the resultset, looking for specific columns.