Is it possible to use functions or expressions to create an alias name?
For example, is there a way to use concat like this?
SELECT
id."myamazingrecords"
FROM
records AS CONCAT("my", "amazing", "records")
I'm looking for a general way to programmatically (via SQL) rename columns in the output of my query.