批量插入时 java.sql.SQLSyntaxErrorException

使用shardingsphere batchInsert 批量插入时,单次插入300多条数据 

### Error updating 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 '-1(station,date, year,latitude,longitude, elevation,name,temp, ' at line 1 ### The error may exist in file [E:\code\java\learn\Magic\Base\target\classes\mapper\GlobalCityTemperatureMapper.xml] ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### sql: insert into temperature(station,date,year,latitude,longitude,levation,name,temp,temp_attributes,dewp,dewp_attributes,slp,slp_attributes,
stp,stp_attributes,visib,visib_attributes,wdsp,wdsp_attributes,mxspd,gust,max,max_attributes,min,min_attributes,prcp,
prcp_attributes,sndp,city_name,country_name,frshtt) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?),
   (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)后边省略


 

相关文章

Java中的String是不可变对象 在面向对象及函数编程语言中,不...
String, StringBuffer 和 StringBuilder 可变性 String不可变...
序列化:把对象转换为字节序列的过程称为对象的序列化. 反序...
先说结论,是对象!可以继续往下看 数组是不是对象 什么是对...
为什么浮点数 float 或 double 运算的时候会有精度丢失的风险...
面试题引入 这里引申出一个经典问题,看下面代码 Integer a ...