विंडो फ़ंक्शंस का उपयोग करें:
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;
लेकिन अगर वह तालिका वास्तव में बड़ी है, तो यह बहुत तेज़ नहीं होगी।