问题描述:
执行mybatis报错check the manual that corresponds to your MySQL server version for the right syntax
问题原因:
字段名可能包含mysql关键字
解决方案:
用``包住关键字,如`order`,即esc下面的键。
问题描述:
执行mybatis报错check the manual that corresponds to your MySQL server version for the right syntax
问题原因:
字段名可能包含mysql关键字
解决方案:
用``包住关键字,如`order`,即esc下面的键。