Using DISTINCT in a CakePHP find function - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T03:41:13Z http://stackoverflow.com/feeds/question/1718482 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function 1 Using DISTINCT in a CakePHP find function Frank Luke http://stackoverflow.com/users/205300 2009-11-11T22:22:35Z 2009-11-20T07:48:14Z <p>Hello,</p> <p>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. Choose the filter combination, click filter, and the page shows only the records that match.</p> <p>In people_controller, I have this bit of code:</p> <pre><code>$first_names = $this-&gt;Person-&gt;find('list', array( 'fields'=&gt;'first_name', 'order'=&gt;'Person.first_name ASC', 'conditions'=&gt; array('Person.status'=&gt;'1') )); $this-&gt;set('first_names', $first_names); </code></pre> <p>(Status = 1 because I am using a soft delete.)</p> <p>That creates an ordered list of all first_names. But duplicates are in there.</p> <p>Digging around in the Cookbook, I found an example using the DISTINCT keyword and modified my code to use it.</p> <pre><code>$first_names = $this-&gt;Person-&gt;find('list', array( 'fields'=&gt;'DISTINCT first_name', 'order'=&gt;'Person.first_name ASC', 'conditions'=&gt; array('Person.status'=&gt;'1') )); </code></pre> <p>This gives me an SQL error like this:</p> <pre><code>Query: SELECT `Person`.`id`, DISTINCT `Person`.` first_name` FROM `people` AS `Person` WHERE `Person`.`status` = 1 ORDER BY `Person`.`first_name` ASC </code></pre> <p>The problem is obvious. The framework is adding Person.id to the query. I suspect this comes from using 'list'.</p> <p>I will use the selected filter to create an SQL statement when the filter button is clicked. I don't need the is field, but can't get rid of it.</p> <p>Thank you, Frank Luke</p> http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function/1718614#1718614 3 Answer by Marko for Using DISTINCT in a CakePHP find function Marko http://stackoverflow.com/users/167781 2009-11-11T22:45:45Z 2009-11-11T22:45:45Z <p>You're right, it seems that you cannot use <code>DISTINCT</code> with <code>list</code>. Since you don't need <code>id</code> but only the names, you can use <code>find all</code> like above and then <code>$first_names = Set::extract($first_names, '/Person/first_name');</code>. That will give you a array with distinct first names.</p> http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function/1718619#1718619 1 Answer by petersendidit for Using DISTINCT in a CakePHP find function petersendidit http://stackoverflow.com/users/135133 2009-11-11T22:46:10Z 2009-11-11T22:46:10Z <p>Yes the problem is that you are using a listing which designed for a id / value output. You probably will have to do a find('all') and then build the list yourself.</p> http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function/1720269#1720269 1 Answer by Muthukumaran for Using DISTINCT in a CakePHP find function Muthukumaran http://stackoverflow.com/users/209331 2009-11-12T06:19:18Z 2009-11-12T06:19:18Z <p>Yes I also tried to fetch unique results with 'list' but its not working. Then I fixed the problem by using 'all'.</p> http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function/1768948#1768948 0 Answer by Kielanas for Using DISTINCT in a CakePHP find function Kielanas http://stackoverflow.com/users/169496 2009-11-20T07:48:14Z 2009-11-20T07:48:14Z <p>Try to use 'group by', it works perfectry:</p> <pre><code>$first_names = $this-&gt;Person-&gt;find('list', array( 'fields'=&gt;'first_name', 'order'=&gt;'Person.first_name ASC', 'conditions'=&gt; array('Person.status'=&gt;'1'), 'group' =&gt; 'first_name')); </code></pre>