I know that
SELECT * FROM Table
will list all columns in the table, but I am interested in listing the columns in alphabetical order.
If you just trying to find a column, on SQL Server.
SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'MyTableThatCouldMaybeNeedNormalising' order by COLUMN_NAME