dblabs/i.sql

6 lines
195 B
MySQL
Raw Permalink Normal View History

2024-01-25 21:55:48 +01:00
--What are the names of these courses, and how many credits do they give?
2024-01-25 19:40:23 +01:00
select courseName, credits, courseCode, pNbr
from Courses
join Students on Students.pNbr
where pNbr = '790101-1234'