Considering the below Mysql 5 query
select
a as "col_1",
b as "col_2",
c as "col_3"
from my_table
How can I use it as a subquery and return the column name aliases in the format below
Column Names |
---|
col_1 |
col_2 |
col_3 |
Nothing comes to mind