I have a need to have a column from a select statement not print in the results. For example in the following select statement I don't want the age to print:
select name, age, salary
from sometable
Results wanted:
==========================
Name Salary
George $1000
Tom $500
Is there a way to do this?
Thanks,
Glenda
select name, age, salary
from sometable
Results wanted:
==========================
Name Salary
George $1000
Tom $500
Is there a way to do this?
Thanks,
Glenda