6 lines
No EOL
195 B
SQL
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' |