Sql:
TableToUpdate = sitem, sdescription, nprice, dtdate, nver
TableToLoad = item, desc,nprice
I need to insert items From TableToload into TableToUpdate with set dtdate=#4/14/2005# ad nver=1 for the matched ones.
I am using:
Insert into TabletoUpdate
(sItem,sdescription,nprice)
select
item, desc,nprice
From TableToLoad
Please advice,
Thank you.
Dré
TableToUpdate = sitem, sdescription, nprice, dtdate, nver
TableToLoad = item, desc,nprice
I need to insert items From TableToload into TableToUpdate with set dtdate=#4/14/2005# ad nver=1 for the matched ones.
I am using:
Insert into TabletoUpdate
(sItem,sdescription,nprice)
select
item, desc,nprice
From TableToLoad
Please advice,
Thank you.
Dré