K tomu můžete použít funkci okna.
select column_1, column_2
from (
select column_1, column_2,
row_number() over (partition by column_1 order by column_2) as rn
from the_table
) t
where rn <= 2;
Mnoho dalších příkladů tohoto druhu problému najdete pod tagem greatest-n-per-group