I am getting this error: #1054 - Unknown column 't.mobile' in 'on clause'
SELECT t.*,v.name,v.contact_person_email,l.firstname as memname
FROM transactions t , vendor v
LEFT JOIN loyalty_members l ON (t.mobile=l.mobile)
WHERE t.vendor_id ='N1WU95'
AND v.alert_mail = '2'
AND t.add_date <= '2011-07-22 09:00:00'
AND t.add_date >= '2011-07-21 09:00:00'
AND t.vendor_id = v.id
AND t.type = '1'
AND t.deleted != '1'
AND t.reference_id = '0'
GROUP BY t.mobile
HAVING COUNT(t.mobile) > 1;
Can anyone please help me to solve this out?
Thanks.
mobileexist in the tabletransactions? – Shef Jul 22 '11 at 11:31