I've been trying to find the most basic was to achieve this, but I have not been able to. I have a simple SQL statement:
SELECT 'Column_a','Column_ab','Column_ac','Column_ad'
which returns
(No column name) (No column name) (No column name) (No column name)
---------------- ---------------- ---------------- ----------------
Column_a Column_ab Column_ac Column_ad
What I really want is to get:
Column_a
Column_ab
Column_ac
Column_ad
I can't use Pivot since it requires an aggregate function.