Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Query not updateable?

Status
Not open for further replies.

CGSB

Programmer
May 23, 2006
35
CA
Hi, I have a Recorset in Access which uses the following query:
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;
This query makes a Recordset that is not updateable.

I was wondering if there is another way I can format my statement so that it is updateable... unless the problem is with my database design (tables and relationships).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top