Mybatis 的动态 SQL 语句

<if>标签 

我们根据实体类的不同取值,使用不同的 SQL 语句来进行查询。

比如在 id 如果不为空时可以根据 id 查询, 如果 username 不同空时还要加入用户名作为条件。这种情况在我们的多条件组合查询中经常会碰到。 

if标签的test属性中不可以使用&&符号

<select id="findByUser" resultType="user" parameterType="user">  
  select * from user where 1=1   
<if test="username!=null and username != '' ">
    and username like #{username}
  </if>   <if test="address != null">
    and address like #{address}
  </if>
</select>

<where>标签

为了简化上面 where 1=1 的条件拼装,我们可以采用<where>标签来简化开发

<select id="findUserByCondition" resultMap="userMap" parameterType="user">
        select * from user
        <where>
            <if test="userName != null">
                and username = #{userName}
            </if>
            <if test="userSex != null">
                and sex = #{userSex}
            </if>
        </where>
</select>

<foreach>标签 

需求 :

传入多个 id 查询用户信息,用下边两个 sql 实现:

SELECT * FROM USERS WHERE username LIKE '%张%' AND (id =10 OR id =89 OR id=16)

SELECT * FROM USERS WHERE username LIKE '%张%' AND id IN (10,89,16)

这样我们在进行范围查询时,就要将一个集合中的值,作为参数动态添加进来。 这样我们将如何进行参数的传递?

在 QueryVo 中加入一个 List 集合用于封装参数 

public class QueryVo {

    private User user;

    private List<Integer> ids;

    /***get set***/
}

持久层 Dao 接口:

根据queryvo中提供的id集合,查询用户信息

/**
     * 根据queryvo中提供的id集合,查询用户信息
     * @param vo
     * @return
     */
    List<User> findUserInIds(QueryVo vo);

 持久层 Dao 映射配置 

<select id="findUserInIds" resultMap="userMap" parameterType="queryvo">
        <!--select * from user where id in (1,2,3,4,5); -->
        select * from user
        <where>
            <if test = "ids != null and ids.size() > 0">
                <foreach collection="ids" open="and id in(" close=")" item="uid" separator=",">
                    #{uid}
                </foreach>
            </if>
        </where>
</select>

<foreach>标签用于遍历集合,它的属性: 

  collection: 代表要遍历的集合元素, 注意编写时不要写#{}

    open:代表语句的开始部分

   close: 代表结束部分

   item: 代表遍历集合的每个元素, 生成的变量名

   separator:代表分隔符

测试方法:

 public void testFindInIds(){
        QueryVo vo = new QueryVo();
        List<Integer> list = new ArrayList<Integer>();
        list.add(41);
        list.add(42);
        list.add(46);
        vo.setIds(list);

        //5.执行查询所有方法
        List<User> users = userDao.findUserInIds(vo);
        for(User user : users){
            System.out.println(user);
        }
    }

Mybatis 中简化编写的 SQL 片段 

Sql 中可将重复的 sql 提取出来,使用时用 include 引用即可,最终达到 sql 重用的目的。 

<!-- 抽取重复的语句代码片段 -->  
<sql id="defaultSql">   
select * from user  
</sql> 
<!-- 配置查询所有操作 --> 
<select id="findAll" resultType="user">
  <include refid="defaultSql"></include>
</select>
<!-- 根据 id 查询 --> 

<select id="findById" resultType="UsEr" parameterType="int">   <include refid="defaultSql"></include>
  where id = #{uid}
</select>

猜你喜欢

转载自www.cnblogs.com/mkl7/p/10753079.html