관련상품 개수 쿼리 수정
This commit is contained in:
@ -109,8 +109,8 @@ if ($default['de_mobile_rel_list_use']) {
|
|||||||
// 관련상품의 개수를 얻음
|
// 관련상품의 개수를 얻음
|
||||||
$sql = " select count(*) as cnt
|
$sql = " select count(*) as cnt
|
||||||
from {$g5['g5_shop_item_relation_table']} a
|
from {$g5['g5_shop_item_relation_table']} a
|
||||||
left join {$g5['g5_shop_item_table']} b on (a.it_id2=b.it_id and b.it_use='1')
|
left join {$g5['g5_shop_item_table']} b on (a.it_id2=b.it_id)
|
||||||
where a.it_id = '{$it['it_id']}' ";
|
where a.it_id = '{$it['it_id']}' and b.it_use='1' ";
|
||||||
$row = sql_fetch($sql);
|
$row = sql_fetch($sql);
|
||||||
$item_relation_count = $row['cnt'];
|
$item_relation_count = $row['cnt'];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -174,7 +174,7 @@ $item_qa_count = $row['cnt'];
|
|||||||
|
|
||||||
// 관련상품의 개수를 얻음
|
// 관련상품의 개수를 얻음
|
||||||
if($default['de_rel_list_use']) {
|
if($default['de_rel_list_use']) {
|
||||||
$sql = " select count(*) as cnt from {$g5['g5_shop_item_relation_table']} a left join {$g5['g5_shop_item_table']} b on (a.it_id2=b.it_id and b.it_use='1') where a.it_id = '{$it['it_id']}' ";
|
$sql = " select count(*) as cnt from {$g5['g5_shop_item_relation_table']} a left join {$g5['g5_shop_item_table']} b on (a.it_id2=b.it_id) where a.it_id = '{$it['it_id']}' and and b.it_use='1' ";
|
||||||
$row = sql_fetch($sql);
|
$row = sql_fetch($sql);
|
||||||
$item_relation_count = $row['cnt'];
|
$item_relation_count = $row['cnt'];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user