Using DISTINCT in a CakePHP find function - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T03:41:13Zhttp://stackoverflow.com/feeds/question/1718482http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function1Using DISTINCT in a CakePHP find functionFrank Lukehttp://stackoverflow.com/users/2053002009-11-11T22:22:35Z2009-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->Person->find('list', array(
'fields'=>'first_name',
'order'=>'Person.first_name ASC',
'conditions'=> array('Person.status'=>'1')
));
$this->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->Person->find('list', array(
'fields'=>'DISTINCT first_name',
'order'=>'Person.first_name ASC',
'conditions'=> array('Person.status'=>'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#17186143Answer by Marko for Using DISTINCT in a CakePHP find functionMarkohttp://stackoverflow.com/users/1677812009-11-11T22:45:45Z2009-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#17186191Answer by petersendidit for Using DISTINCT in a CakePHP find functionpetersendidithttp://stackoverflow.com/users/1351332009-11-11T22:46:10Z2009-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#17202691Answer by Muthukumaran for Using DISTINCT in a CakePHP find functionMuthukumaranhttp://stackoverflow.com/users/2093312009-11-12T06:19:18Z2009-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#17689480Answer by Kielanas for Using DISTINCT in a CakePHP find functionKielanashttp://stackoverflow.com/users/1694962009-11-20T07:48:14Z2009-11-20T07:48:14Z<p>Try to use 'group by', it works perfectry:</p>
<pre><code>$first_names = $this->Person->find('list', array(
'fields'=>'first_name',
'order'=>'Person.first_name ASC',
'conditions'=> array('Person.status'=>'1'),
'group' => 'first_name'));
</code></pre>