select * from table_name ORDER BY name like 'C%' DESC;
在MySQL這個查詢做工精細,但我無法使用Zend DB查詢。 我在執行時遇到錯誤。
PHP DB代碼:
$result = $this->getDefaultAdapter() ->select() ->from($this->_name,array('*')) ->order("name like 'C%' DESC") ->query() ->fetchAll();
錯誤:
Column not found: 1054 Unknown column 'name like 'C%'' in 'order clause'
在此先感謝
感謝很多:) –