框架原本使用的是mysql5.6 由于环境安全问题mysql5.6 升级至 mysql5.8
升级后出现了有个sql语句不识别
有个表里有个字段是:system
nutz 的 query(cnd) 查询生成的sql语句是:
select * from sys_menu where system = 'platform'
结果报错:
[SQL]select * from sys_menu where system = 'platform'
[Err] 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 'system = 'platform'' at line 1
由于框架的代码比较多了,这块的业务关联的地方也很多 所以有没有什么解决办法 或者让query(cnd)出来的sql带上 ``号什么的