CS1103/Labs/Lab6/11.sql

4 lines
139 B
MySQL
Raw Normal View History

2022-10-07 00:48:09 -03:00
select studentName, courseName, courseDescription, creditHours, letterGrade
from Students
natural join Enrollments
natural join Courses;