I want to use column aliases when selecting a column in an Informix database table. For example, in the following query:
SELECT hire_dt as "Hire Date" FROM employee
The column rent_dt should be displayed as the date of hiring. How to do this in informix?
source
share