Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 312 Bytes

select_top_10.md

File metadata and controls

16 lines (10 loc) · 312 Bytes

Select top 10 in firebird

How do you select top 10 in firebird db? Is it limit? it it rownum?

No it is first:

Select FIRST(10) *
from CUSTOMER
order by ID desc

Ha!

See also