Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 309 Bytes

select_top_10.md

File metadata and controls

19 lines (12 loc) · 309 Bytes

Select top (10) in sqlite

Limit! Put the limit at the end...

SELECT * FROM PERSONS
LIMIT 10

Exactly the same as MySQL....

SELECT *
FROM Persons
LIMIT 5;

Different from Firebird and oracle....

See also