Mysql 常见错误代码: 1064
错误提示:
错误代码: 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"
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇: mysql 查询当天、最近一天、最近一周,本月,上一个月的数据
- 下一篇:没有了