Adding Titles for Column Headers
Define titles for your column headers using "AS":
For example: The following SQL Statement will display formatted titles rather than just the field names as titles.
SELECT firstname AS "First Name", lastname AS "Last Name", checkin AS "CheckIn Date", checkout AS "Checkout Date" FROM FOLIOHD
See Highlighting for more information.