I have a SQL select statement like this:
select FirstName, LastName, Age from People
This will return me something like a table:
Peter Smith 34John Walker 46Pat Benetar 57
What I want is to insert the column headings into the first row like:
First Name Last Name Age=========== ========== ====Peter Smith 34John Walker 46Pat Benetar 57
Can someone suggest how this could be achieved?
Could you maybe create a temporary table with the headings and append the data one to this?