mybatis if else 用法
时间: 2023-04-24 08:05:52 浏览: 210
在 MyBatis 中,if 和 choose 元素可以用于在 SQL 语句中进行条件判断和分支控制。
if 元素的使用方式如下:
```
<select id="getUser" parameterType="java.lang.String" resultType="User">
SELECT * FROM users
WHERE 1=1
<if test="username != null">
AND username = #{username}
</if>
<if test="age != null">
AND age = #{age}
</if>
</select>
```
在上面的示例中,使用了两个 if 元素来判断是否需要添加额外的条件到 SQL 语句中。每个 if 元素中的 test 属性用于指定一个条件表达式,只有当该条件为真时,if 元素中包含的 SQL 语句才会被添加到最终的 SQL 语句中。
choose 元素可以用于实现类似于 switch 语句的分支控制。使用方式如下:
```
<select id="getUser" parameterType="java.lang.String" resultType="User">
SELECT * FROM users
WHERE 1=1
<choose>
<when test="username != null">
AND username = #{username}
</when>
<when test="age != null">
AND age = #{age}
</when>
<otherwise>
AND 1=1
</otherwise>
</choose>
</select>
```
在上面的示例中,使用了 choose 元素来实现条件分支控制。choose 元素包含多个 when 元素和一个 otherwise 元素,当条件表达式为真时,会执行对应的 when 元素中包含的 SQL 语句,否则会执行 otherwise 元素中包含的 SQL 语句。
阅读全文