我有一个表,其中逗号分隔另一个表的id我想在cakephp中以正确的形式使用以下查询并使用find函数
"select * from special_offers where find_in_set('".$storeId."', stores) and user_id = '". $userId ."'";
答案 0 :(得分:12)
像这样使用
$data = $this->SpecialOffer->find('all',array('conditions' => array('SpecialOffer.user_id' => $userId ,'FIND_IN_SET(\''. $storeId .'\',SpecialOffer.stores1)')));
希望这可以帮到你