我已经试过了,但没有成功。

select top 5 * from [Table_Name]

当前回答

只替换你的表名[TABLE_NAME]并使用。

"select * from "+TABLE_NAME+ " LIMIT " +5;

其他回答

TOP和方括号是特定于Transact-SQL的。在ANSI SQL中使用LIMIT和反引号(')。

select * from `Table_Name` LIMIT 5;

一个等价的说法是

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

注意:我有mobile_sales_details表

语法

select column_name from table_name order by column_name desc limit size.  

如果你需要最低的价格,只需从订单中删除关键字desc

只替换你的表名[TABLE_NAME]并使用。

"select * from "+TABLE_NAME+ " LIMIT " +5;
select * from [Table_Name] limit 5