Where do i look for that info? (Sorry a little new at this).
Here is the query i'm trying to run (the query works).
UPDATE dbo_MenuItem RIGHT JOIN PLU ON dbo_MenuItem.UDFNum1=PLU.PLU_Num SET
PLU.Cost_Sale = dbo_MenuItem.Cost, PLU.Retail_Price = dbo_MenuItem.Price,
PLU.Ad_Price = dbo_MenuItem.PrPrice, PLU.ADOn = dbo_MenuItem.PrStartDate,
PLU.ADOff = dbo_MenuItem.PREndDate;
Where dbo_MenuItem is password protected table and PLU is Table being updated.
Here is syntax i found somewhere else that shows how to enter a password
into an insert query. But i tried it here and it didn't work. At least not
the way I tried it.
UPDATE my_table
SET myField = 'myValue'
WHERE anotherField =
(SELECT someField
FROM diffTable IN '' [;DATABASE=C:\Data.mdb;PWD=myPassword]
WHERE criteriaField = 100);