6 lines
No EOL
182 B
SQL
6 lines
No EOL
182 B
SQL
--Which students have taken 0 credits? [16]
|
|
|
|
select firstName, lastName
|
|
from Students
|
|
left join TakenCourses on Students.pNbr = TakenCourses.pNbr
|
|
where TakenCourses.pNbr is null |