#1064 从表中删除项目时

发布于 2025-01-01 08:17:14 字数 880 浏览 0 评论 0原文

我最近升级到 MYSQL 5。这是 webhost 允许的最新版本。当尝试更新表或删除条目时,这是我在 phpmyadmin 中收到的错误。

错误

您的 SQL 查询中似乎存在错误。下面的 MySQL 服务器错误输出(如果有)也可以帮助您诊断问题

ERROR: Unlated quote @ 101 STR:' SQL:DELETE FROM inmates WHERE inmates.counties_id = 33 AND CONVERT(inmates.link USING utf8) = \'http://inmate1.riversidesheriff.org/iis/\' LIMIT 1

SQL 查询:

DELETE FROM inmates 
WHERE `inmates`.`counties_id` = 33 
AND CONVERT(`inmates`.`link` USING utf8) = \'http://inmate1.riversidesheriff.org/iis/\' 
LIMIT 1

MySQL 说:

文档#1064 - 您的 SQL 语法有错误;检查 与您的 MySQL 服务器版本相对应的手册 在 '\'http://inmate1.riversidesheriff.org/iis/\' LIMIT 附近使用的语法 1' 在第 1 行

,这是查询,

SELECT * FROM `inmates` WHERE 1

非常感谢任何帮助 谢谢。

I recently upgraded to MYSQL 5. That is latest version that webhost allows. When trying to update a table or delete an entry this is the error I receive while in phpmyadmin.

Error

There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem

ERROR: Unclosed quote @ 101
STR: '
SQL: DELETE FROM inmates WHERE inmates.counties_id = 33 AND CONVERT(inmates.link USING utf8) = \'http://inmate1.riversidesheriff.org/iis/\' LIMIT 1

SQL query:

DELETE FROM inmates 
WHERE `inmates`.`counties_id` = 33 
AND CONVERT(`inmates`.`link` USING utf8) = \'http://inmate1.riversidesheriff.org/iis/\' 
LIMIT 1

MySQL said:

Documentation #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 '\'http://inmate1.riversidesheriff.org/iis/\' LIMIT
1' at line 1

and here is the query

SELECT * FROM `inmates` WHERE 1

any help is greatly appreciated
thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

她如夕阳 2025-01-08 08:17:14

去掉单引号前的反斜杠:它们不是必需的。

我的意思是,将其更改

\'http://inmate1.riversidesheriff.org/iis/\' 

为:

'http://inmate1.riversidesheriff.org/iis/' 

Lose the backslash before the single-quotes: they are not required.

By that I mean, change this:

\'http://inmate1.riversidesheriff.org/iis/\' 

To this:

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