• 帝国CMS自定义列表的排序


    统计记录: 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

  • 相关阅读:
    前端思想实现:面向UI编程_____前端框架设计开发
    使用单体模式设计原生js插件
    QQ空间首页背景图片淡出解析与不足完善
    网页字体设置
    Asp.net MVC Session过期异常的处理
    日本设计的七个原则
    断开所有远程连接(sql server)
    Ubuntu1404+Django1.9+Apache2.4部署配置2配置文件设置
    Linux系统查找文件find命令使用(不断更新)
    ubuntu1404下Apache2.4错误日志error.log路径位置
  • 原文地址:https://www.cnblogs.com/surplus/p/12805662.html
Copyright © 2020-2023  润新知