(13-14) Question 5: writing the join condition in the from clause.
select a.student_name,
a.test_score,
b.letter_grade
from sec1311_student_scores a,
sec1311_grade_ranges b
where a.test_score between b.beginning_score and b.ending_score
order by a.student_name;