I have simple question. How to list Max people with tie.
select student.stdname from student, class where (select max(class.awrd) from class) = class.stdnumb and class.stdnumb = student.stdnumb;
Apparently, student table have tie for student total awards they received.
If I run above query it will list only one Max awarded student, but not the other.
How do I list both student with max awards.