SQLite limit

前端之家收集整理的这篇文章主要介绍了SQLite limit前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

select * from table limit 5 offset 3;

limit 限制取5行

offset 顾名思义,跳过3行

对于android下面ContentResolver.query() 不提供limit offset支持

可以通过 order 来实现,如 colunm asc limit 5 offset 3

原文链接:https://www.f2er.com/sqlite/202665.html

猜你在找的Sqlite相关文章