G
Guest
I have a table in which I need to import data from another (smaller) table.
The larger table needs to be populated with this new data, then other data
entered to be sent to a vendor. I keep getting the above subject error.
here is the sql for my query:
INSERT INTO Agent ( FULLNAME, EESSN, Earnings )
SELECT TotalEarnings.fullName, TotalEarnings.[SocSec#], TotalEarnings.TotEarn
FROM TotalEarnings LEFT JOIN Agent ON TotalEarnings.[SocSec#] = Agent.EESSN;
There are no validation rules, allow zero length is set to yes, there is no
indexed fields. What can I do to make this work? I thought if I hit Yes, it
would populate at least SOME of the data, but I can't get anything to write
over to the larger table.
The larger table needs to be populated with this new data, then other data
entered to be sent to a vendor. I keep getting the above subject error.
here is the sql for my query:
INSERT INTO Agent ( FULLNAME, EESSN, Earnings )
SELECT TotalEarnings.fullName, TotalEarnings.[SocSec#], TotalEarnings.TotEarn
FROM TotalEarnings LEFT JOIN Agent ON TotalEarnings.[SocSec#] = Agent.EESSN;
There are no validation rules, allow zero length is set to yes, there is no
indexed fields. What can I do to make this work? I thought if I hit Yes, it
would populate at least SOME of the data, but I can't get anything to write
over to the larger table.