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