Sử dụng các chức năng cửa sổ:
select *
from (
select col1,
col2,
row_number() over (order by some_column) as rn,
count(*) over () as total_count
from the_table
)
where rn <= 4;
Nhưng nếu bảng đó thực sự lớn, nó sẽ không nhanh lắm.