• Could you give an example of what you mean by "rename output data"? Do you mean aliasing column names so they display as something other than their original names in the table?

    SELECT FName AS FirstName

    FROM MyTable;

    or did you mean to modify/overwrite column data?