i have this query that works fine
我有一个运行良好的查询
SELECT t.username
FROM users t LEFT JOIN friends y ON t.id=y.user_id2 and y.user_id1=2
WHERE LOWER(t.username) LIKE 'ha%'
ORDER BY
CASE WHEN y.user_id2 IS NULL THEN 1
ELSE 0
END
,t.username;
i'm trying to write it with zend framework and this is what i came up with
我试着用zend framework来写,这就是我想到的
$users = new Users;
$select = $users->select();
$select->setIntegrityCheck(false);
$select->from(array('t1' => 'users'), array('username'));
$select->joinLeft(array('t2' => 'friends'), 't1.id=t2.user_id2 and t2.user_id1 =2');
$select->where("LOWER(t1.username) like '$input%'");
$select->order("t1.username, CASE WHEN t2.user_id2 IS NULL THEN 1 ELSE 0 END ");
$listofusernames = $users->fetchAll($select);
however it seems not to work and i get this error
但是它似乎不起作用,我得到了这个错误
Fatal error: Uncaught exception 'Zend_Db_Statement_Mysqli_Exception' with message 'Mysqli prepare error: Unknown column 't1.username, CASE WHEN t2.user_id2 IS NULL THEN 1 ELSE 0 END ' in 'order clause'' in /opt/lampp/htdocs/vote_old/library/Zend/Db/Statement/Mysqli.php:77 Stack trace: #0
apparently it has to do with the case embedded in the order by clause.
显然,它与order by子句中嵌入的案例有关。
do you have any idea how to fix that code ?
你知道怎么修改代码吗?
thank you
谢谢你!
1 个解决方案
#1
3
try to put the columns in array like
尝试将列放在数组中
$select->order(array('t1.username',
new Zend_Db_Expr ('CASE WHEN t2.user_id2 IS NULL THEN 1 ELSE 0 END')));
#1
3
try to put the columns in array like
尝试将列放在数组中
$select->order(array('t1.username',
new Zend_Db_Expr ('CASE WHEN t2.user_id2 IS NULL THEN 1 ELSE 0 END')));