"Simplicity can't be bought later, it must be earned from the start" -- DB
select student, array_to_string( array_agg(grade order by grade desc limit 2), ',' ) as two_best_grades from student_grades group by student;
No comments:
Post a Comment