How to get Top 5 records in SqLite?

Amitabh picture Amitabh · Apr 28, 2010 · Viewed 224.3k times · Source

I have tried this which did not work.

select top 5 * from [Table_Name]

Answer

Nix picture Nix · Apr 28, 2010
SELECT * FROM Table_Name LIMIT 5;