点击进入知科官方网站
查看: 2785  |  回复: 7
 
 
longfor
积分:1270
注册时间:2012-02-08
最后登录:2013-10-21
发送短消息
发表于 2012-03-23 14:10  [已置顶]
我每个频道发了一个商品。可是这些商品显示在每个频道里。
 
管理员补充编辑:
本帖三楼较为详细的讲述了怎么编写条件语句,请大家仔细参考!
 
 
Official服务
积分:16745
注册时间:2012-01-02
最后登录:2015-09-24
发送短消息
回复于 2012-03-23 14:13
1楼
创建组合语句,语句示例:
 
显示所有商品:
where enable=1 and classid>0 and thumbnail<>'' order by time desc,id desc
 
显示某一个类别下的商品:
where enable=1 and classid=类别编号 and thumbnail<>'' order by time desc,id desc
 
 
 
 
 
longfor
积分:1270
注册时间:2012-02-08
最后登录:2013-10-21
发送短消息
回复于 2012-03-23 14:17
2楼
是大类的编号还是小类的类别编号呢?
 
 
Official服务
积分:16745
注册时间:2012-01-02
最后登录:2015-09-24
发送短消息
回复于 2012-03-23 14:17
3楼
 
编写语句在后台——商城频道——商城参数——组合语句(进入商城参数页面拖到页面最底部)
 
 
类别“手机数码”的编号为3
类别“手机数码”下的“手机配件”的编号为33
类别“手机数码”下的“手机配件”下有一个子级叫“蓝牙耳机”
 
比如要显示一级类别“手机数码”下的所有商品,语句为:
where enable=1 and (classid=30 or classid=31 or classid=32 or classid=33 or classid=34) and thumbnail<>'' order by time desc,id desc
 
比如要显示一级类别“手机数码”下“手机配件”下的所有商品,语句为:
where enable=1 and classid=33 and thumbnail<>'' order by time desc,id desc
 
比如要显示一级类别“手机数码”下“手机配件”下“蓝牙耳机”下的所有商品,语句为:
where enable=1 and classid=33 and sonclass ='(33)蓝牙耳机' and thumbnail<>'' order by time desc,id desc
 
———————————————————————————————————————————
 
比如一个会员发布商品,该会员的ID为27,要显示该会员发布的所有商品。
 
比如会员“苏宁电器”的会员ID为27,要在商城主页显示该会员的所有商品
 
比如名称写“苏宁电器专区”
语句为  where enable=1 and uid=27 and thumbnail<>'' order by time desc,id desc
 
———————————————————————————————————————————
 再来举个例子,比如建立一个版块放2元专区
名称写“2元专区”
则语句为 where enable=1 and buyprice=2 and thumbnail<>'' order by time desc,id desc
 
 
要显示价格在100元到500元之间的商品,
则语句为 where enable=1 and buyprice>=100 and buyprice<=500 and thumbnail<>'' order by time desc,id desc
 
 
 
Official服务
积分:16745
注册时间:2012-01-02
最后登录:2015-09-24
发送短消息
回复于 2012-03-23 14:29
4楼
这一楼来说说商品的排序:
默认的排序是order by time desc,id desc (按最新发布的商品显示 )
 
按点击率由高到低order by click desc,time desc,id desc
按购买数由高到低order by buycount desc,time desc,id desc
显示推荐,优先显示推荐商品order by istop desc,isred desc,time desc,id desc
按价格排序,由低价到高价order by buyprice asc,time desc,id desc
按价格排序,由高价到低价order by buyprice desc,time desc,id desc
 
 
 
Official服务
积分:16745
注册时间:2012-01-02
最后登录:2015-09-24
发送短消息
回复于 2012-04-22 15:37
5楼
 
 
漯河热线
积分:625
注册时间:2012-04-19
最后登录:2012-07-27
发送短消息
回复于 2012-05-05 22:27
6楼
学习了
 
 
新郸城网
积分:245
注册时间:2014-01-28
最后登录:2014-12-01
发送短消息
回复于 2014-01-28 12:58
7楼
非常有用处!
回复帖子