表字段与mysql关键字冲突

项目启动提示语法错误
[42000][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 'persist,

检查发现,表字段中有个persist字段,和mysql关键字冲突
解决该问题,需要在查询的时候,字段名带上反引号,用的是mybatis-plus,所以在对应实体类的字段加上注解即可

@TableField("`persist`")
private Integer persist;

 

上一篇:javascript – 循环 – forEach,for … for … for,for … in


下一篇:如何捕获c中的无效输入?