演示代码按8小时、24小时、7天、30天、365天时间调用,大家可以参照代码按实际情况修改3600*72=72小时:

8小时内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*720 
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*720 order by onclick desc


24小时内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*2400
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*2400 order by onclick desc
 

7天内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*7*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*7*24 order by onclick desc

 
一个月
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*30*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*30*24 order by onclick desc
 

一年
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*365*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*365*24 order by onclick desc

 

历史上的今天
01月
8
    抱歉,历史上的今天作者很懒,什么都没写!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。