帝国cms自定义表单(帝国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