Possible Duplicate:
Include a blank row in query results
I would like to add an empty row to my result set at the very top of my SQL query.
The query I am using is this:
SELECT
PROFILETITLE, DOCID
FROM
PROFILES
WHERE
COMPANYCODE = ?
ORDER BY
PROFILETITLE
Try to use
union allbut if you wont to add header, and if
DOCIDisinttype, you have to useunion allandcastas below