1. 程式人生 > >mybatis-plus where 拼接條件

mybatis-plus where 拼接條件

環境宣告:

springboot : 2.0.4
mybatisplus-spring-boot-starter: 1.0.5

問題描述:
需要在sql 中呼叫 mysql 的函式,並且 還需要根據條件查詢。
使用 mybatis-plus的 eq 方法無法實現,原因是 需要在 sql 中 呼叫mysql的函式。

例如我想要的sql 如下

select * from table where p = 'hah' and c = 'hah' and DATE_SUB(CURDATE(), INTERVAL 10 DAY) <= ctime order by ctime desc;
# 這個是 mysql 的內建函式
DATE_SUB(CURDATE(), INTERVAL 10 DAY) <= ctime 

錯誤寫法:

Page page = new Page<>(1,10);
Condiction condition = Condition.create();
Object [] obj = {"h","h"};
String sql = "p = #{param1} and c = #{param2} and DATE_SUB(CURDATE(), INTERVAL 10 DAY) <= ctime ";
condiction.where(sql,obj);
selectPage(page, condiction);

上面寫法錯誤的原因是,佔位符寫錯

p = #{param1} and c = #{param2}

正確的寫法:

p = #{ew.paramNameValuePairs.MPGENVAL1} and c = #{ew.paramNameValuePairs.MPGENVAL2}

為什麼我知道要這麼寫?

可以看MapperProxy 類的 invoke 方法

clipboard.png