Hello,I am writing a query that joins several tables. Is it possible to automatically rearrange the columns alphabetically in the resultset?So I would like the resultset of a statement like the following to be displayed with column names arranged alphabeticallySELECT item.id AS itemId, item.name, item.desc, item.price, ...,itemCat.id AS itemCatId, itemCat.name AS categoryName, itemCat.desc AS categoryDesc, ...FROM itemCatLEFT JOIN item ON item.id = itemCat.id
I understand that I can rearrange the columns in the SELECT statement, but sometimes there are too many column names to manually rearrange in a SELECT statement.