数据库
首页 > 数据库> > 若依代码生成的一个大坑 You have an error in your SQL syntax; check the manual that corresponds to your MySQL s

若依代码生成的一个大坑 You have an error in your SQL syntax; check the manual that corresponds to your MySQL s

作者:互联网

报错如下所示:显示我的xml文件的SQL语句有错

### Error querying database. Cause: java.sql.SQLSyntaxErrorException: 
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 'declare from ass_api ) tmp_count' at line 2 
### The error may exist in file [C:\Users\20102\Desktop\RuoYi-Vue-master\ass_server\target\classes\mapper\server\AssApiMapper.xml] 
### The error may involve com.ruoyi.server.mapper.AssApiMapper.selectAssApiList-Inline 
### The error occurred while setting parameters 
### SQL: select count(0) from ( select id, project_name, module_name, api_type, data_type, request_data, code, creater, create_time, declare from ass_api ) tmp_count 
### Cause: java.sql.SQLSyntaxErrorException: 
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 'declare from ass_api ) tmp_count' at line 2 ; bad SQL grammar []; 
nested exception is java.sql.SQLSyntaxErrorException: 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 'declare from ass_api ) tmp_count' at line 2

经过仔细检查发现我的map文件的sql语句有一处的字段名称和sql语句关键词重名了,所以导致报错
详细如下图所示:
在这里插入图片描述
请添加图片描述

标签:代码生成,check,error,syntax,SQL,server,your,###
来源: https://www.cnblogs.com/little-monster-lhq/p/16676077.html