[sqlite] How to get Top 5 records in SqLite?

I have tried this which did not work.

select top 5 * from [Table_Name]

This question is related to sqlite select

The answer is


select * from [Table_Name] limit 5

TOP and square brackets are specific to Transact-SQL. In ANSI SQL one uses LIMIT and backticks (`).

select * from `Table_Name` LIMIT 5;

An equivalent statement would be

select * from [TableName] limit 5

http://www.w3schools.com/sql/sql_top.asp


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


Select TableName.* from  TableName DESC LIMIT 5