Advertisement
Advertisement
| 07.07.2008 at 07:24PM PDT, ID: 23545292 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: |
select mp.*
, ( SELECT COUNT(*)
FROM merchant im
JOIN merchant_to_product imp
ON imp.fk_merchant_id = im.merchant_id
AND imp.fk_merchant_id <> 373
WHERE im.is_active = 1
AND imp.sku = mp.sku
) other_merchant_count
from merchant_to_product mp
where mp.fk_merchant_id = 373
AND mp.price between 0 AND 300
AND mp.fk_subcategory_id = 89
AND mp.sku IN (SELECT imp.sku
FROM merchant im
JOIN merchant_to_product imp
ON imp.fk_merchant_id = im.merchant_id
AND imp.fk_merchant_id <> 373
WHERE im.is_active = 1
)
AND 5 <= ( SELECT COUNT(*)
FROM merchant im
JOIN merchant_to_product imp
ON imp.fk_merchant_id = im.merchant_id
AND imp.fk_merchant_id <> 373
WHERE im.is_active = 1
AND imp.sku = mp.sku
)
|