作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我喜欢在 Where 子句和订单中使用 Zend 中的列:
$select = $this->select();
$select = $select->where('year = ?', $year)
->where('order != ?', 0)
->order('order');
$rows = $this->fetchAll($select);
但是当我这样做时,出现以下错误:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order != 0) ORDER BY
order
ASC' at line 1
为什么??!
最佳答案
您必须将列名放在 order
中,因为它是 SQL 语法的保留字。最好不要像 SQL 中的关键字那样命名您的列,因此请将您的列 order
重命名为其他名称。
关于mysql - Zend DB 为 Where 和 Order 子句使用一个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15146924/
我是一名优秀的程序员,十分优秀!