Retornar todas as linhas com o valor "MAX" no SQL?

Eu tenho a seguinte tabela:

Tabela: Pontuações O que eu tenho:

+----+-------+
| Id | value |
+----+-------+
|  1 |   300 |
|  2 |   300 |
|  3 |   300 |
|  4 |   100 |
|  5 |   200 |
+----+-------+

O que eu preciso:

+----+-------+
| Id | value |
+----+-------+
|  1 |   300 |
|  2 |   300 |
|  3 |   300 |
--------------

Como eu iria pegar "todos" os melhores resultados id 1, 2, 3 no SQL. Comecei usando MAX (no mysql), mas isso só retorna uma linha.

questionAnswers(4)

yourAnswerToTheQuestion