I have following query where interest is field name. interest contains like football,vollyball etc.
SELECT * FROM `drop_down_multiples` where find_in_set('football',`interest`);
I stuck to convert above query in CakePHP. How I can convert ?
Thanks.