帝国CMS自定义列表查询SQL语句,从第N条开始查询的方法


avatar
pcwnas 2023-04-25 136

原文来自:https://liye5.com/

内容摘要

帝国CMS自定义列表查询SQL语句,从第N条开始查询的方法

文章正文

◎ 简介:帝国CMS自定义列表查询SQL语句,从第N条开始查询的方法

统计记录:

select count(*) as total from [!db.pre!]ecms_news where id>(select id from [!db.pre!]ecms_news order by id desc limit 10,1) and checked=1

查询记录:

select * from phome_ecms_news where checked=1 order by newstime desc

从第10条是开始!

代码注释