程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

我的 mysqli 查询有什么问题?[复制]

发布于2023-01-17 22:49     阅读(1144)     评论(0)     点赞(25)     收藏(2)


I am sorry if I sound noob but I need some help here. I cant figure out with this query:

    $query = "SELECT * FROM msgs WHERE read = 1 AND userid='{$uId}' AND
orderid='{$oId}'; ";

When I do a var_dump on the query result i get bool(false) but when I do the same without the read = 1 part it returns results correctly so I guess the problem is with the read = 1 part. Please help, the read field type is tinyint(1).


解决方案


您需要在查询中使用反引号,因为您使用了保留关键字read:-

$query = "SELECT * FROM `msgs` WHERE `read` = 1 AND `userid`='{$uId}' AND `orderid`='{$oId}'";

注意:-read是这里的保留关键字,我添加了其他关键字,因为它不容易记住所有保留关键字,因此在列名周围使用反引号是更好的方法。

@chris85 提供的深度知识链接:- https://dev.mysql.com/doc/refman/5.5/en/keywords.html



所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:http://www.phpheidong.com/blog/article/472728/07447551e55561c45f30/

来源:php黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

25 0
收藏该文
已收藏

评论内容:(最多支持255个字符)