本文主要是介绍mybatis check the manual that corresponds to your MySQL server version for the right syntax错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
遇到的check the manual that corresponds to your MySQL server version for the right syntax错误
在使用代码生成器生成基础代码后碰到题目的问题,查了下是 关键冲突了,像这样。
SELECT id,name
,sex,idcard,telphone,village,group
,householdid from baseinfo
group 为关键字,要改的话找到对应实体类
@TableField("group
") 关键字两边加上反引号就行了。
这篇关于mybatis check the manual that corresponds to your MySQL server version for the right syntax错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!