need some SQL Update Help

G

Guest

I have a Access 2000 db and I have these 2 tables.

ArchInvoices
---------------
InvoiceID - Primary Key - Autonumber
InvoiceNumber - long
SaleType - char(1)
TransactionDate - DateTime
Discount - Integer
WholesaleFlag - Boolean
PaymentMethod - Char(6)
CustPONumber - Char(30)
ShortName - Char(30)
MdCountCode - char(2)
TaxFreeID - char(30)
Paid - Boolean
FestInvoiceNumber - long

The second Table is:

ArchLineItems
---------------
TransactionType - char(1)
Units - integer
UnitCost - Double
BottleSize - Double
LineItemId - PrimaryKey - Autonumber
InvoiceNumber - Long - Foreign Key Field from ArchInvoices
Productcode - char(6)
TransactionDate - DateTime
MdcountyCode - char(2)
ShortName - char(30)
Wholesalerflag - Boolean
Discount - integer
TaxFree - Boolean

Now, the two tables are in a 1 to Many relationship. For every 1 ArchInvoice
record there are Many ArchLineItems records.

Now, I need to take the ArchLineItems.TransactionDate and set it to the
ArchInvoices.TransactionDate.

I have tried many update statements and Access keeps on giving me an error
saying missing 1 parameter. I need some sort of Update SQL that will do this.
Can anybody help. Yes, I know the tables need to be normalized. Thanks in
advanced.
 
T

Tom van Stiphout

On Tue, 25 Sep 2007 06:06:02 -0700, Ed Cohen

Create a new update query. In the QBE window select both tables. Join
them by InvoiceNumber. Drag LineItems.TransactionDate to the grid
below. Set its value to ArchInvoices.TransactionDate

Indeed, that's a terrible database design.

-Tom.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top