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

6 lines
No EOL
150 B
SQL

--How many credits has the student taken?
select sum(credits) as totalSum
from Courses
join Students on Students.pNbr
where pNbr = '790101-1234'