帝国cms自定义列表多表查询统计代码
网站建设 2022-07-27 08:12www.1681989.com免费网站
统计记录: 1 select count () as total from [!db.pre!]ecms_news union select count () as total from [!db.pre!]ecms_movie 查询记录: 1 select classid,id,titleurl,title,newstime from [!db.pre!]ecms_news union select classid,id,titleurl,title,newstime from [!db.pre!] […]
统计记录:
1 |
select count () as total from [!db.pre!]ecms_news union select count () as total from [!db.pre!]ecms_movie |
查询记录:
1 |
select classid,id,titleurl,title,newstime from [!db.pre!]ecms_news union select classid,id,titleurl,title,newstime from [!db.pre!]ecms_movie order by newstime desc |
-----------------------注释-------------------------------
以上调用的是(新闻模型news、电影模型movie)两个模型的文章,两个模型用"Union"连接调用
若指定栏目用where classid (46,47,51),
若调用推荐在其后追加and isgood=1,
若指定调用条数在其后追加limit 10