kosmokramer
Programmer
INSERT INTO orderTable (transaction, movieTitle, movieQuantity )
VALUES (' & (Select Max(transaction) FROM transactionTable) & ', 'Braveheart', 3);
I am not really sure how you are supposed to nest queries like this, so I am just guessing. The transaction table just holds the transaction numbers and the userName. There is a one to many relationship between the orderTable and the transaction table (one transaction number, but many orders....er...items would be better probably). The number transaction is an autonumber variable
VALUES (' & (Select Max(transaction) FROM transactionTable) & ', 'Braveheart', 3);
I am not really sure how you are supposed to nest queries like this, so I am just guessing. The transaction table just holds the transaction numbers and the userName. There is a one to many relationship between the orderTable and the transaction table (one transaction number, but many orders....er...items would be better probably). The number transaction is an autonumber variable