I have a table that list students\' grades per class. I want a result set that looks like:
BIO...B CHEM...C
Where the \"B\" and \"C\" are the m
You just need to GROUP BY ClassName
GROUP BY ClassName
SELECT ClassName, MODE(Grade) FROM YourTable GROUP BY ClassName