比如有id为1-10 共10条数据,现在想要根据传如的id来查询该指定id后的5条数据,
比如传入id为1,则查询出id为1,2,3,4,5 的数据,如果传入id为3,则查询出id为3,4,5,6,7 的数据
如何写?谢谢
ringa_lee
以users表为例:
\DB::table('users') -> where('id', '>=', $id) -> orderBy('id') -> take(5) -> get();
其中 id >=1 且 id 其中 id >=3 且 id
以users表为例:
其中 id >=1 且 id 其中 id >=3 且 id