LOGO设计网-免费logo设计_公司标志logo设计_logo设计门户站

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

2022-04-05 06:00     Phome     已有32人围观

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

  帝国CMS自定义列表查询SQL语句,从第N条开始查询的方法,下面帝国CMS模板网就来为大家分析:

  统计记录:

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条是开始!

您可能还喜欢

<