jay said:
How can you copy a column from a query to a table.
Is this possible and which way would be the easiest?
I am using access office 2002 and would like to do this.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Do you mean create a new column in a table & then transfer data from one
table's column into the new column? You'd have to use DDL:
ALTER TABLE table_name ADD COLUMN column_name <data type> <column
properties>
See the Access Help article "ALTER TABLE" from more info.
Then copy the data in:
INSERT INTO table_name (column_name)
SELECT other_column_name FROM other_table_name WHERE <criteria>
--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv
iQA/AwUBQbThh4echKqOuFEgEQJ4kQCeMddKp2h3JFrAzRzABuXr8Va8JbcAnA+l
gxusZpxnMCh6fiuBnfphi+3M
=uyNU
-----END PGP SIGNATURE-----