MyBatis if标签:条件判断
下文讲述MyBatis中if标签的示例分享
MyBatis if 类似于 Java 中的 if 语句是 MyBatis 中最常用的判断语句
使用 if 标签可以节省许多拼接 SQL 的工作,把精力集中在 XML 的维护上
if 语句使用方法简单,常常与 test 属性联合使用。语法如下
<if test="判断条件"> SQL语句 </if>当判断条件为 true 时,才会执行所包含的 SQL 语句
最常见的场景是在 if 语句中包含 where 子句,例如。
<select id="selectAllUserInfo" resultMap="myResult"> select id,name,url from userInfo <if test="name != null"> where name like #{name} </if> </select>可多个 if 语句同时使用。以下语句表示为可以按照名称(name)或者备注(notes)进行模糊查询
当您不输入名称或备注,则返回所有用户记录。
当你传递了任意一个参数,它就会返回与给定参数相匹配的记录。
<select id="selectAllWebsite" resultMap="myResult"> select id,name,url from userInfo where 1=1 <if test="name != null"> AND name like #{name} </if> <if test="notes != null"> AND notes like #{notes} </if> </select>
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。