数据库(子查询)

where parent_id=0

 

 

select shop_price from`kangarooisland_database`.`ki_goods`where cat_id in( select cat_id from`kangarooisland_database`.`ki_category` where parent_id=0) and is_hot=1 order by goods_id desc LIMIT 4

 

 

 

//查询数据库得到热销商品的价格 shop_price
$hot_goods_list = 'select shop_price from'. $GLOBALS['ecs']->table('goods') .'where cat_id in( select cat_id from'
. $GLOBALS['ecs']->table('category') .' where parent_id='.$row['cat_id'].') and is_hot=1 order by goods_id desc LIMIT 4';
posted @ 2015-03-05 15:28  xiaolang001  阅读(170)  评论(0编辑  收藏  举报