MySQL は初めてなので、質問に情報が不足している場合は教えてください。
私は正常に動作するクエリを持っています:
select au.email, sm.created, sm.grade, sm.max_grade
from auth_user au, courseware_studentmodule sm
where sm.student_id = au.id
and course_id = 'MyCourse'
and sm.module_type = 'problem';
しかし、別のテーブルから別の列を追加したい場合:
select au.email, sm.created, sce.created , sm.grade, sm.max_grade
from auth_user au, courseware_studentmodule sm, student_courseenrollment sce
where sm.student_id = au.id and sm.student_id = sce.id
and course_id = 'MyCourse'
and sm.module_type = 'problem';
このエラーが発生します
ERROR 1052 (23000): Column 'course_id' in where clause is ambiguous
理由を知っている人はいますか?
ありがとう