xml中模糊查询
Posted lidar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml中模糊查询相关的知识,希望对你有一定的参考价值。
xml中where中的查询 select * from a <where> <!-- 模糊查询 --> <if test="name" !=null || name != ""> and name like ‘%‘||#{name}||‘%‘ </if> <if test="age" !=null || age!= ""> and name = #{age} </if> </where>
以上是关于xml中模糊查询的主要内容,如果未能解决你的问题,请参考以下文章