kabir_hussein
Registered User.
- Local time
- Today, 19:50
- Joined
- Oct 17, 2003
- Messages
- 191
data mismatch error
hi I am using the following code to link two tables(update one from to other) but i get the follwoing message.
DATA MISMATCH ERROR
however i am sure everything is right
what could be wrong
thank you
here is the code i am using
INSERT INTO tenderlink ( TenderlinkID, [Tender Quantity], [Tender Unit Price], [Target Unit Price], [Tender Cost] )
SELECT Changelink.tenderlinkID, Changelink.[Tender Qty Changed], Changelink.[Tender Unit Price Changed], Changelink.[Target Unit Price Changed], Changelink.[Tender Cost Changed]
FROM Changelink left JOIN tenderlink ON ([tenderlink].[TenderlinkID] = [changelink].[tenderlinkID])
hi I am using the following code to link two tables(update one from to other) but i get the follwoing message.
DATA MISMATCH ERROR
however i am sure everything is right
what could be wrong
thank you
here is the code i am using
INSERT INTO tenderlink ( TenderlinkID, [Tender Quantity], [Tender Unit Price], [Target Unit Price], [Tender Cost] )
SELECT Changelink.tenderlinkID, Changelink.[Tender Qty Changed], Changelink.[Tender Unit Price Changed], Changelink.[Target Unit Price Changed], Changelink.[Tender Cost Changed]
FROM Changelink left JOIN tenderlink ON ([tenderlink].[TenderlinkID] = [changelink].[tenderlinkID])