Is it possible to refer to a column by its position in a query, rather than by its name? Something like:
SELECT 1 FROM MyTable WHERE 2 = true ORDER BY 3
to display the first column where the second column is true, sorted by the third column. I could have sworn that I recently saw a method for doing so, but can’t find it again. Actually, I found several articles that say it *can’t* be done. Am I losing it…?