dblabs/i.sql
2024-01-25 21:55:48 +01:00

6 lines
No EOL
195 B
SQL

--What are the names of these courses, and how many credits do they give?
select courseName, credits, courseCode, pNbr
from Courses
join Students on Students.pNbr
where pNbr = '790101-1234'