您的位置:首页 > 数据库 > MySQL

Mysql 常见错误代码: 1064

2015-12-17 11:55 483 查看
错误提示:

错误代码: 1064

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'issplit = '1' where term = '00'' at line 1

原来的sql语句:

UPDATE tag SET msplit = '00' issplit = '1' WHERE term = '00'

经过检查之后发现时sql 语句写错了。

应该修改为:

UPDATE tag SET msplit = '00' ,issplit = '1' WHERE term = '00'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  mysql