您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS自定义列表的排序newstime时间,onclick点击或浏览,plnum 评论,diggtop
豪基2023-01-22 15:52:04帝国CMS教程已有人查阅
导读[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、p统计记录: select count(*) as total from [!db.pre!]ecms_movie
统计记录:
select count(*) as total from [!db.pre!]ecms_movie
查询记录:
select * from [!db.pre!]ecms_movie order by id desc
注释:[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)
desc - 降序排列 ASC - 升序排列
id desc 是按id降序排列 id ASC 是按id升序排列
举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、p统计记录: select count(*) as total from [!db.pre!]ecms_movie
查询记录:
select * from [!db.pre!]ecms_movie order by id desc
注释:[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)
desc - 降序排列 ASC - 升序排列
id desc 是按id降序排列 id ASC 是按id升序排列
举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、plnum (评论)、diggtop 、rand (随机)
如:增加当前栏目(一般是错误的,因自定义列表不能用当前栏目这个参数,这是只是一个引用以备其他地方应用)
where classid='$GLOBALS[navclassid]'当前栏目
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]'
查询记录:
select * from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]' order by id desc
自定义列表调用多个栏目,或指定栏目(sql中指定的栏目ID必须为终极栏目ID)
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid in (23,24,25)
查询记录:
select * from [!db.pre!]ecms_movie where classid in (23,24,25) order by id desc
lnum (评论)、diggtop 、rand (随机)
如:增加当前栏目(一般是错误的,因自定义列表不能用当前栏目这个参数,这是只是一个引用以备其他地方应用)
where classid='$GLOBALS[navclassid]'当前栏目
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]'
查询记录:
select * from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]' order by id desc
自定义列表调用多个栏目,或指定栏目(sql中指定的栏目ID必须为终极栏目ID)
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid in (23,24,25)
查询记录:
select * from [!db.pre!]ecms_movie where classid in (23,24,25) order by id desc
本文标签:
很赞哦! ()
相关文章
随机图文
-
帝国CMS批量提取正文内容到简介的方法
最近接到一个帝国cms模板改版项目,自带的数据可能是采集的,以前的简介字段内容只截取了60个字,新模板的简介60字符太少了 -
帝国CMS新手教程栏目功能的说明
帝国cms栏目功能说明,帝国CMS的非终极栏目的页面模式支持以下四种:帝国CMS的终极栏目的页面模式只有一种:列表式 -
帝国CMS的truetime,lastdotime,newstime分别代表哪三个时间
问:truetime,lastdotime,newstime这三个分别代表哪三个时间???答:三个分别是:实际发布时间,最后修改时间,可修改的发布时间 -
帝国cms排行数字效果怎么实现
增加字段提示Row size too large,帝国CMS增加字段提示以下信息.超过mysql允许的最大单表长度,解决办法是:减少字段,或字段少用text类型.
留言与评论 (共有 条评论) |