欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Tk.mybatis零sql语句实现动态sql查询的方法(4种)

程序员文章站 2022-06-22 12:16:04
目录实现方式:方式一:使用example实现方式二:使用example.createcriteria实现方式三:使用example.builder实现方式四:使用weekendsqls实现有时候,查询...

有时候,查询数据需要根据条件使用动态查询,这时候需要使用动态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。

      关于tk.mybatis的介绍以及如何配置,本文暂不介绍,不了解的请自行百度,本文只介绍如何基于tk.mybatis实现不写sql语句也能实现动态sql查询。

实现方式:

1. 使用example实现

2. 使用example.createcriteria

3. 使用example.builder实现

4. 使用weekendsqls实现

方式一:使用example实现

/**
   * 第一种:使用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实现

/**
   * 第二种:使用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实现

/**
   * 第三种:使用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实现

/**
   * 第四种:使用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查询的方法(4种)的文章就介绍到这了,更多相关tk.mybatis 动态sql查询内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!