码迷,mamicode.com
首页 > 数据库 > 详细

数据库(子查询)

时间:2015-03-05 16:14:16      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

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‘;

数据库(子查询)

标签:

原文地址:http://www.cnblogs.com/xiaolang1/p/4315956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!