Easy
Given the following 'students' and 'students_courses' tables:
students:
| student_id | name |
|------------|--------|
| 1 | Alice |
| 2 | Bob |
students_courses:
| student_id | course_id |
|------------|-----------|
| 1 | 1 |
| 1 | 2 |
| 2 | 1 |
Which SQL query retrieves the names of students enrolled in the course with ID 1?
Author: Vincent CotroStatus: PublishedQuestion passed 2072 times
Edit
5
Community Evaluations
Alexandre Seris
05/07/2024
La deuxiĂšme rĂ©ponse est marquĂ©e comme fausse alors qu'elle marche aussi (mĂȘme si je suis d'accord pour dire que le join est plus propre)
Similar QuestionsMore questions about SQL