简体   繁体   中英

MS Access - Getting “Enter parameter value” when trying to join 3 tables

SELECT students.student_name, grades.grade
FROM students,grades
WHERE students.id = student_enrollment.student_id 
AND student_enrollment.id= grades.student_enrollmet_id

I'm getting an "Enter parameter value" box regarding "student_enrollment.student_id"

I have checked multiple times and it is spelled and (pretty sure structured) correctly.

尝试使用三个表:

FROM students, grades, student_enrollment

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM