My form uses the SQL statement below to populate itsfields:
When I try to update one of the fields, a message appears saying "This Recordset is not updateable".
My question is, how can I change the above SQL statement so that it allows my Recordset to be updateable.
Code:
SELECT course.course_name, candidate_course.status,
candidate_course.year, candidate_course.quarter,
candidate_course.file_no
FROM course LEFT JOIN candidate_course
ON (course.course_id = candidate_course.course_id
AND candidate_course.file_no = '77777')
WHERE course.set="1
ORDER BY course.course_name;
When I try to update one of the fields, a message appears saying "This Recordset is not updateable".
My question is, how can I change the above SQL statement so that it allows my Recordset to be updateable.