zend 查询的 where 子句有什么问题
嗨,我很生气不理解 zend 查询的 where 子句中的错误。我的查询是
$select->where("id=".$get['value']." OR description like '%".$get['value']."%'");
$get['value']
是我要搜索的查询。但结果是500内部服务器错误
并且总是说get['value']
的值是未知列。例如,如果我在 testing
中搜索 description
列,它总是说 testing
在未知列中......为什么会发生这种情况
Hi I am mad on not understanding the error in this where clause of zend query. My query is
$select->where("id=".$get['value']." OR description like '%".$get['value']."%'");
$get['value']
is the query that I want to search. But result is 500 internal server error
and it always says the value of get['value']
is unkown column. For example if I have searched testing
for description
column it always says that testing
in unknown columns... why is this happening
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查此文档zend_db_select 你的语法可能有误。
已编辑!
Check this docs zend_db_select you may wrong in your syntax.
Edited!