嘀嘀嘀~~~  页面这在飞快的跑来 . . .

Mybatis动态SQL


Mybatis 的映射文件,有些时候业务逻辑复杂时,我们的 SQL是动态变化的

动态SQL语句

if

根据实体类的不同取值,使用不同的 SQL语句来进行查询。比如在 id如果不为空时可以根据id查询,如果username 不同空时还要加入用户名作为条件。这种情况在我们的多条件组合查询中经常会碰到。

<select id="findByCondition" parameterType="user" resultType="user">
    select * from User
    <where>
        <if test="id!=0">
            and id=#&#123;id&#125;
        </if>
        <if test="username!=null">
            and username=#&#123;username&#125;
        </if>
    </where>
</select>

当查询条件id和username都存在时,控制台打印的sql语句如下

     //获得MyBatis框架生成的UserMapper接口的实现类
  UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
    User condition = new User();
    condition.setId(1);
    condition.setUsername("lucy");
    User user = userMapper.findByCondition(condition);  

当查询条件只有id存在时,控制台打印的sql语句如下

 //获得MyBatis框架生成的UserMapper接口的实现类
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
User condition = new User();
condition.setId(1);
User user = userMapper.findByCondition(condition);

foreach

循环执行sql的拼接操作,例如:SELECT * FROM USER WHERE id IN (1,2,5)

<select id="findByIds" parameterType="list" resultType="user">
    select * from User
    <where>
        <foreach collection="array" open="id in(" close=")" item="id" separator=",">
            #&#123;id&#125;
        </foreach>
    </where>
</select>

测试代码片段

 //获得MyBatis框架生成的UserMapper接口的实现类
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
int[] ids = new int[]&#123;2,5&#125;;
List<User> userList = userMapper.findByIds(ids);
System.out.println(userList);

foreach标签的属性含义如下:

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

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

•open:代表语句的开始部分

•close:代表结束部分

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

•sperator:代表分隔符

SQL片段抽取

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

<!--抽取sql片段简化编写-->
<sql id="selectUser" select * from User</sql>
<select id="findById" parameterType="int" resultType="user">
    <include refid="selectUser"></include> where id=#&#123;id&#125;
</select>
<select id="findByIds" parameterType="list" resultType="user">
    <include refid="selectUser"></include>
    <where>
        <foreach collection="array" open="id in(" close=")" item="id" separator=",">
            #&#123;id&#125;
        </foreach>
    </where>
</select>

文章作者: WuLiZeng
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 WuLiZeng !
评论
 上一篇
Eclipse操作 Eclipse操作
Eclipse最初是由IBM公司开发的替代商业软件Visual Age for Java的下一代IDE开发环境,2001年11月贡献给开源社区,现在它由非营利软件供应商联盟Eclipse基金会(Eclipse Foundation)管理。
2020-09-14
下一篇 
数制转换 数制转换
数制,也称为“计数制”,是用一组固定的符号和统一的规则来表示数值的方法。任何一个数制都包含两个基本要素:基数和位权。不同的数制可以进行进制转换。
  目录