Mybatis动态SQL
时间: 2024-01-16 17:05:42 浏览: 90
Mybatis是一种流行的Java持久层框架,支持动态SQL。动态SQL是指根据不同的条件组合来生成不同的SQL语句。Mybatis提供了一些标签和函数来实现动态SQL。
以下是一些常用的Mybatis动态SQL标签:
1. if标签:根据条件判断是否包含某个SQL片段。例如:
```
<select id="getUser" parameterType="User" resultType="User">
select * from user
<where>
<if test="id != null">
and id = #{id}
</if>
<if test="name != null">
and name = #{name}
</if>
</where>
</select>
```
2. choose、when、otherwise标签:类似于Java中的switch语句,根据多个条件判断选择不同的SQL片段。例如:
```
<select id="getUser" parameterType="User" resultType="User">
select * from user
<where>
<choose>
<when test="id != null">
and id = #{id}
</when>
<when test="name != null">
and name = #{name}
</when>
<otherwise>
and age = #{age}
</otherwise>
</choose>
</where>
</select>
```
3. foreach标签:循环遍历集合或数组,生成多个SQL片段。例如:
```
<select id="getUsers" parameterType="List" resultType="User">
select * from user
<where>
<foreach collection="list" item="user" separator="or">
id = #{user.id}
</foreach>
</where>
</select>
```
以上是一些Mybatis动态SQL标签的示例,你可以根据实际情况灵活使用它们。
阅读全文