Greetings,
I'm looking to run an append query to append multiple values to an existing table but also want the append query to add a constant value to each record. The following example data and desired results should help to explain further:
Any ideas?
~Melagan
______
"It's never too late to become what you might have been.
I'm looking to run an append query to append multiple values to an existing table but also want the append query to add a constant value to each record. The following example data and desired results should help to explain further:
Code:
Data to append:
Address Date County
1 Main 3/8/2006
2 Main 3/8/2006
3 Jones 3/9/2006
12 Mark 3/10/2006
On main table, after append:
Address Date County
1 Main 3/8/2006 Fresno
2 Main 3/8/2006 Fresno
3 Jones 3/9/2006 Fresno
12 Mark 3/10/2006 Fresno
Any ideas?
~Melagan
______
"It's never too late to become what you might have been.