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....
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....