gpt4 book ai didi

php - mysql查询奇怪的错误

转载 作者:行者123 更新时间:2023-12-01 00:45:08 25 4
gpt4 key购买 nike

当其他相同的页面运行良好但另一个在相同的查询代码上给出错误时我收到错误。

这是我的代码,这有什么问题吗?

$ttt = mysql_query("SELECT * FROM like WHERE (user_id='$user_id' AND sound_id='$sound_id')",$link) or die(mysql_error());

错误

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 'like WHERE (user_id='' AND sound_id='')' at line 1

最佳答案

like 是一个 SQL reserved word你应该在反引号内使用“like”``

$ttt = mysql_query("SELECT * FROM `like` WHERE (user_id='$user_id' AND sound_id='$sound_id')",$link) or die(mysql_error());

关于php - mysql查询奇怪的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23220892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com