How to get Top 5 records in SqLite?
Solution 1:
SELECT * FROM Table_Name LIMIT 5;
Solution 2:
An equivalent statement would be
select * from [TableName] limit 5
http://www.w3schools.com/sql/sql_top.asp
Solution 3:
select price from mobile_sales_details order by price desc limit 5
Note: i have mobile_sales_details table
syntax
select column_name from table_name order by column_name desc limit size.
if you need top low price just remove the keyword desc from order by
Solution 4:
TOP and square brackets are specific to Transact-SQL. In ANSI SQL one uses LIMIT and backticks (`).
select * from `Table_Name` LIMIT 5;