mybatisplus函数
时间: 2023-10-02 09:09:14 浏览: 230
mybatisplus
MyBatis-Plus 是一个 MyBatis 的增强工具,在 MyBatis 的基础上增加了许多实用的功能,其中包括函数。
MyBatis-Plus 的函数可以通过在 XML 配置文件中使用 ${funcName(args)} 的形式来调用。以下是 MyBatis-Plus 支持的函数:
1. 数学函数:支持 abs、mod、sqrt、exp、ln、log、log10、power、round、sign、trunc、acos、asin、atan、cos、cot、degrees、radians、sin、tan 等数学函数。
2. 字符串函数:支持 concat、substring、instr、lpad、rpad、trim、lower、upper、replace、length、ascii、char、initcap、regexp_replace、regexp_substr 等字符串函数。
3. 日期函数:支持 current_date、current_time、current_timestamp、date、time、timestamp、year、month、day、hour、minute、second 等日期函数。
4. 条件函数:支持 ifnull、if、case、coalesce 等条件函数。
5. 其他函数:支持 cast、soundex、user 等其他函数。
使用 MyBatis-Plus 函数可以使 SQL 语句更加简洁、易读,提高开发效率。
阅读全文