选择mytable.*、othertable.foo、othertable.bar。。。
如何用cakephp编写上述查询?我试过了,但没用。
$data = $this->Articles->find()->select(['Articles.*','Categories.name'])->innerJoineWith('Categories');
它给我的错误接近 SELECT Fees.* AS
费用__* .
因此,我必须编写article表的所有列。
$data = $this->Articles->find()->select(['Articles.id','Articles.name','Articles.title','Articles.description','Categories.name'])->innerJoineWith('Categories');
cakephp有什么解决方案吗?请告诉我。谢谢您。
2条答案
按热度按时间mwyxok5s1#
你可以这样做:
km0tfn4u2#