Using DISTINCT in a CakePHP find function

后端 未结 12 2027
情歌与酒
情歌与酒 2020-12-06 05:54

I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list.

12条回答
  •  庸人自扰
    2020-12-06 06:15

    Just group by the fields that you want to get distinct.. or use Set::extract() and then array_unique()

提交回复
热议问题