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固定条件查询的主要内容,如果未能解决你的问题,请参考以下文章
mybatis plus XML文件如何使用多个where条件