I am doing project in cakephp .
I want to write below query in cakephp Style. I've written 50% . Please help me
$this->Login->find('all')
SELECT * FROM login
ORDER BY FIELD(profile_type, 'Basic', 'Premium') DESC;
Plese try this
$this->Login->find('all', array(
'order'=>array('FIELD(Login.profile_type, "basic", "premium") DESC')
));