文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Tk.mybatis零sql语句实现动态sql查询的方法有哪些

2023-06-21 21:48

关注

这篇文章主要讲解了“Tk.mybatis零sql语句实现动态sql查询的方法有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Tk.mybatis零sql语句实现动态sql查询的方法有哪些”吧!

有时候,查询数据需要根据条件使用动态查询,这时候需要使用动态sql,通常我们会自己写动态sql来实现,比如:

<select id="findStudentByCondition" resultType="com.example.service.entity.Student">    SELECT id, name, score FROM tbl_student    <where>      <if test="score !=null and score > 0">        score > #{score}      </if>      <if test="name !=null and name != ''">         <bind name="pattern" value=" '%' + name + '%' "/>        AND name LIKE #{pattern}      </if>    </where>    ORDER BY score DESc  </select>

        这个sql是查询成绩大于90并且名字包含“i”的学生信息。但是有时候又加了一个条件,又要去改sql,改入参,有没有一种方式可以将写动态sql像写代码一样实现呢?如果你有这个想法,推荐你了解一下Tk.mybatis。

实现方式:

使用Example实现

使用Example.createCriteria

使用Example.builder实现

使用WeekendSqls实现

方式一:使用Example实现

  @Test  public void testSelectByExample() {    Example example = new Example(Student.class);    // 设置查询列    example.selectProperties("id","name","score");    // 动态sql    example.and()        .andGreaterThan("score",90)        .andLike("name", "%i%");    // 去重    example.setDistinct(true);    // 排序    example.orderBy("score").desc();    List<Student> students = studentMapper.selectByExample(example);    System.out.println(students);  }

方式二:使用example.createCriteria实现

  @Test  public void testSelectByExampleCriteria() {    Example example = new Example(Student.class);    // 设置查询列    example.selectProperties("id","name","score");    // 动态查询    example.createCriteria()        .andGreaterThan("score",90)        .andLike("name", "%i%");    // 去重    example.setDistinct(true);    // 排序    example.orderBy("score").desc();    List<Student> students = studentMapper.selectByExample(example);    System.out.println(students);  }

方式三:使用Example.builder实现

  @Test  public void testSelectByExampleBuilder() {    Example example = Example.builder(Student.class)        // 查询列        .select("id","name","score")        // 动态sql        .where(Sqls.custom()            .andGreaterThan("score",90)            .andLike("name","%i%"))        // 去重        .distinct()        // 排序        .orderByDesc("score")        .build();    List<Student> students = studentMapper.selectByExample(example);    System.out.println(students);  }

方式四:使用weekendSqls实现

  @Test  public void testSelectByWeekendSqls() {    WeekendSqls<Student> sqls = WeekendSqls.custom();    sqls = sqls        .andGreaterThan(Student::getScore,90)        .andLike(Student::getName,"%i%");    List<Student> sysRoles = studentMapper.selectByExample(Example.builder(Student.class)        .select("id","name","score")        .where(sqls)        .distinct()        .orderByDesc("score")        .build());    System.out.println(sysRoles);   }

感谢各位的阅读,以上就是“Tk.mybatis零sql语句实现动态sql查询的方法有哪些”的内容了,经过本文的学习后,相信大家对Tk.mybatis零sql语句实现动态sql查询的方法有哪些这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯