zend 查询的 where 子句有什么问题

发布于 2024-10-31 16:34:21 字数 358 浏览 3 评论 0原文

嗨,我很生气不理解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鼻尖触碰 2024-11-07 16:34:21

检查此文档zend_db_select 你的语法可能有误。

$table->select()
         ->where('id = ?', $get['value'])
         ->orWhere('description like ?', '%' . $get['value'] . '%');

已编辑!

Check this docs zend_db_select you may wrong in your syntax.

$table->select()
         ->where('id = ?', $get['value'])
         ->orWhere('description like ?', '%' . $get['value'] . '%');

Edited!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文