Mybatis if test中字符串比较

Posted zibujinghan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis if test中字符串比较相关的知识,希望对你有一定的参考价值。

<if test=‘Where_Pattern == "123"‘></if>
例如:
根据条件 order by:
<choose>
<when test=‘stateOptions == "1002"‘>
order by OK_TIME
</when>
<otherwise>
ORDER BY ADD_TIME DESC
</otherwise>
</choose>

以上是关于Mybatis if test中字符串比较的主要内容,如果未能解决你的问题,请参考以下文章

mybatis的 if test 条件判断字符串单双引号解析问题

mybatis if test 判断字符串的坑

MyBatis if test 判断字符串相等不生效

mybatis 关于 if test 判断字符串的大坑

mybatis if标签判断字符串

mybatis里if标签判断字符串相等不相等的问题