mybatis的xml带where固定条件查询

Posted 苏格拉的底

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis的xml带where固定条件查询相关的知识,希望对你有一定的参考价值。

mybatis的xml带where固定条件查询

where parent_id != 0
            <if test="problemName != null  and problemName != ''"> and problem_name like concat('%', #{problemName}, '%')</if>
            <if test="problemQuestion != null  and problemQuestion != ''"> and problem_question = #{problemQuestion}</if>

mybatis的xml带where固定条件查询

csdn写的博客部分正文会丢失,得转到其他网站

以上是关于mybatis的xml带where固定条件查询的主要内容,如果未能解决你的问题,请参考以下文章

java代码中组装where条件然后拼接到mybatis xml中的sql后面

mybatis plus XML文件如何使用多个where条件

使用mybatis框架实现带条件查询-多条件

Mybatis XML动态SQL

mybatis查询中多个条件where后面怎么写

配置文件完成动态条件查询