其實,在sqlite3中沒有top的語法結構,但在sqlite3中有相關的語法能實現跟top語法相同的功能,sqlite3 sql是用limit這樣的語法來實現的;
如:
復制代碼 代碼如下:
select * from table where name='_安靜ゝ' order by id limit 0,10;
這個效果就相當於select top 10 * from table where name='_安靜ゝ';
如果還有更精確的:
復制代碼 代碼如下:
select * from table where name='_安靜ゝ' order by date desc,id limit 0,10;