V
Van T. Dinh
There are 2 syntaxes for the INSERT INTO... SQL.
* Multiple-record append query:
INSERT INTO target [(field1[, field2[, ...]])] [IN
externaldatabase]
SELECT [source.]field1[, field2[, ...]
FROM tableexpression
* Single-record append query:
INSERT INTO target [(field1[, field2[, ...]])]
VALUES (value1[, value2[, ...])
In your case, you will need to use the 2nd syntax. Check
Access Help for more info.
HTH
Van T. Dinh
MVP (Access)
information from another table just add a new record
to 'Table1'. I can't seem to get it to work, when i run it
no records are appended?? How do i use a query to create a
new record for a single table??
* Multiple-record append query:
INSERT INTO target [(field1[, field2[, ...]])] [IN
externaldatabase]
SELECT [source.]field1[, field2[, ...]
FROM tableexpression
* Single-record append query:
INSERT INTO target [(field1[, field2[, ...]])]
VALUES (value1[, value2[, ...])
In your case, you will need to use the 2nd syntax. Check
Access Help for more info.
HTH
Van T. Dinh
MVP (Access)
record to a database table 'Table1'. I do not want to copy-----Original Message-----
Hi,
I am trying to create an "Append Query" that adds a new
information from another table just add a new record
to 'Table1'. I can't seem to get it to work, when i run it
no records are appended?? How do i use a query to create a
new record for a single table??