recordset not updatable

SaraMegan

Starving Artist
Local time
Today, 17:00
Joined
Jun 20, 2002
Messages
185
I have made a form from a query. The query has no calculations in it or anything, but still the recordset is not updatable.

I've tried using different types of joins for this, but the query doesn't work with outer joins.

Here's my SQL. I'm probably missing something pretty basic, but I'm not sure what it is.

SELECT tblApplication.ApplicationID, tblApplicants.LastName, tblApplicants.FrstName, tblApplicants.SSN, tblApplication.SourceID, tblApplication.Recvd, tblApplication.Certified, tblApplication.LetterSent, tblApplication.TestDate, tblApplication.TestScore, tblApplication.SentToSupervisor, tblApplication.JobOffered, tblApplication.Hired, tblApplication.Comments, tblApplication.ApplicationStatus
FROM tblApplicants INNER JOIN tblApplication ON (tblApplicants.SSN = tblApplication.SSN) AND (tblApplicants.SSN = tblApplication.SSN);

Please let me know if I need to clarify further.

Thanks ;)

--Sara
 
duh...

Thanks, Pat. I knew it was something basic. :rolleyes:

Works great now!

--Sara
 

Users who are viewing this thread

Back
Top Bottom