嘿,我需要一个帮助我有“产品”表和“服务”表。这两个表之间存在关联。“产品”属于“服务”,“服务”有很多“产品”。我必须为所有“产品”找到其对应的所有“Service_id”。
我的代码是:-
$products = $this->Product->query('select name from products');//retrives all products
for ($p=0; $p<count($products); $p++)
{
$serviceid = $this->Product->query("select service_id from products where name = $products[$p][name]");//for each product finding its all corresponding service_id
}
在上面的代码中 $product[$p][name] 不起作用。
提前致谢