sql问题
CONCAT_WS改为CONCAT -- 拼接字符串
STR_TO_DATE改为DATE_FORMAT -- 时间格式化
CONVERT(1,CHAR)改为CONVERT(VARCHAR,1) -- 数字转字符串
FORMAT改为ROUND -- 保留小数后几位
Java问题
1、Cause: com.github.pagehelper.PageException: 无法自动获取数据库类型,请通过 helperDialect 参数指定!
答:将分页jar包改为5.1.4
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.4</version>
<exclusions>
<exclusion>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
</exclusion>
</exclusions>
</dependency>
2、like查询
trade_city like “%”#{tradeCity}"%"改为trade_city like ‘%${tradeCity}%’