An error occurred: SELECT coupon_id, coupon_title, coupon_desc, coupon_detail, coupon_code, coupon_type, discount_type, discount_value, verified, used_total, exp_date, rank, positive_vote, negative_vote, added_date, edited_date
,(select coupontype from coupon_type where type_id = c.coupon_type) as coupontype
,(select discounttype from discount_type where type_id = c.discount_type) as discounttype
FROM coupons cinner join stores s on s.store_id=c.store_id inner join store_countries sc on sc.store_id=s.store_id and sc.country_id=1 where c.statusid = 2
and c.best_coupon = 1
limit 4
--