Cakephp3,如何在cakephp3中使用where子句和内部联接?
作者:互联网
我正在尝试从产品表中获取评论表.
并且我添加了列名’delete_yn’,这意味着该评论是否被删除.
我在下面使用了一些蛋糕查询
return $this->Product->find()
->contain(['ProductReview', 'Users'])
->where(['Product.product_code' => $productCode])
->toArray();
结果很好.
但是,现在我要检查评论是否已被用户删除,并且在“ del_yn”列中仅显示“ n”
我添加了此查询
->andWhere(['Product.ProductReview.del_yn' => 'n'])
在where子句之后.
但这行不通.
请帮忙.
解决方法:
而不是使用andWhere([‘Product.ProductReview.del_yn’=>’n’]),而是使用匹配(ifcakephp 3.0.x)或innerJoinWith()if(cakephp 3.1.x)并过滤匹配特定关联数据的记录.例如,
return $this->Product->find()
->matching('ProductReview', function ($q) {
return $q->where(['ProductReview.del_yn' => 'n']);
})
->contain(['ProductReview', 'Users'])
->where(['Product.product_code' => $productCode])
->group('Product.id')
->toArray();
标签:cakephp,cakephp-3-0,mysql,php 来源: https://codeday.me/bug/20191119/2033997.html