ORDER BY clause to sort the results first by gold_medals in descending order.silver_medals in descending order.bronze_medals in descending order.country in ascending order to break any ties.
erDiagram
OLYMPIC {
string country PK
int gold_medals
int silver_medals
int bronze_medals
}