sqlite3 top的查询及limit语法介绍_SQLite教程-查字典教程网
sqlite3 top的查询及limit语法介绍
sqlite3 top的查询及limit语法介绍
发布时间:2016-12-28 来源:查字典编辑
摘要:其实,在sqlite3中没有top的语法结构,但在sqlite3中有相关的语法能实现跟top语法相同的功能,sqlite3sql是用limi...

其实,在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;

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新SQLite学习
    热门SQLite学习
    编程开发子分类