D
DanEgg
I have a create table query where I would like to add an addditional column
that is an autonumber column. How can I reference autonumber within the
SELECT to get it to populate successfully?
Here is the query in question:
SELECT A.COLUMN_A
,A.COLUMN_B
,A.COLUMN_C
,????? COLUMN_D
FROM
A
ORDER BY
A.COLUMN_A
,A.COLUMN_B
Is it possible to reference AUTONUMBER to populate COLUMN_D during the
create table query?
that is an autonumber column. How can I reference autonumber within the
SELECT to get it to populate successfully?
Here is the query in question:
SELECT A.COLUMN_A
,A.COLUMN_B
,A.COLUMN_C
,????? COLUMN_D
FROM
A
ORDER BY
A.COLUMN_A
,A.COLUMN_B
Is it possible to reference AUTONUMBER to populate COLUMN_D during the
create table query?