G
Glenn
This statement works for me:
INSERT INTO Customers ( LastName, FirstName, CardID,
CardStatus, Notes )
VALUES
('LastName', 'FirstName', 'CardID', 'CardStatus', 'Notes')
;
The VALUES are passed by an external database front-end
program.
How do I then add VALUES ('Address', 'City','State') to
table Customers_Address whereby there is a "INNER JOIN
Customers_Address ON Customers.UniqueID =
Customers_Address.CustomerID" ?? With VALUES again passed
by the front-end app, and hopefully via the same SQL
query.
INSERT INTO Customers ( LastName, FirstName, CardID,
CardStatus, Notes )
VALUES
('LastName', 'FirstName', 'CardID', 'CardStatus', 'Notes')
;
The VALUES are passed by an external database front-end
program.
How do I then add VALUES ('Address', 'City','State') to
table Customers_Address whereby there is a "INNER JOIN
Customers_Address ON Customers.UniqueID =
Customers_Address.CustomerID" ?? With VALUES again passed
by the front-end app, and hopefully via the same SQL
query.