|
Unknown column 'piccount' in 'field list'SELECT a.*, COUNT(*) AS calcdist,piccount, p.picfile,
UNIX_TIMESTAMP(a.createdon) AS timestamp, ct.cityname,
UNIX_TIMESTAMP(a.starton) AS starton, UNIX_TIMESTAMP(a.endon) AS endon
FROM xzclf_events a
INNER JOIN xzclf_featured feat ON a.adid = feat.adid AND feat.adtype = 'E' AND feat.featuredtill >= NOW()
INNER JOIN xzclf_cities ct ON a.cityid = ct.cityid
LEFT OUTER JOIN xzclf_adpics p ON a.adid = p.adid AND p.isevent = '1'
WHERE (starton <= '2010-02-20' AND endon >= '2010-02-20')
AND a.enabled = '1' AND a.verified = '1' AND a.expireson >= NOW()
AND ct.countryid = 1
GROUP BY a.adid
ORDER BY a.starton DESC |