So, I\'ve been searching around and I\'ve found things similar to my problem, but I need more help to get a real solution.
I\'m trying to construct a query that will
You could always do something like this
SELECT 'Column_Name' AS ColumnName, (SELECT TOP 1 Column_Name FROM Table tbl2 WHERE tbl.ID = tbl2.ID) FROM Table tbl