Brandi L wrote:
> Is there a way that I can rename a column within a
coldfusion query?
Yup and in any other technology making use of SQL that
supports the
alias 'AS' statement.
I.E.
SELECT
a.site,
a.pkgname,
a.pkgrev,
b.pkgname AS b_pkgname,
b.pkgrev AS b_bkgrev
...
I hear good things about Ben Forta's "Teach Yourself SQL in
10 Minutes"
as well as the many SQL references and tutorials available on
the internets.