On Wed, Jan 19, 2011 at 11:42 AM, Miqdad Ali <[email protected]>wrote:

> whether it's possible
>
> i want to sort three field of a table
>
> please help
>
> $subjects=$this->Subject->find('all',array('order'=>'Subject.department_id
> ASC Subject.course_id ASC Subject.semester_id ASC'));
>

Use an array:

$this->Subject->find(
    'all',
    array(
        'order' => array(
            'Subject.department_id' => 'ASC',
            'Subject.course_id' => 'ASC',
            'Subject.semester_id' => 'ASC'
        )
    )
);

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to