One: 동적 SQL을 사용하여 다중 조건 쿼리 완료
a: if+where를 사용하여 다중 조건 쿼리 구현
우선 시나리오 요구 사항, 등급 및 클래스 테이블이 있으며 첫 번째 요구 사항은 수행하는 것입니다. 퍼지 쿼리 이름 및 연령 쿼리를 기반으로 한 조건, 인터페이스 레이어 방법
1 | public List<student> getStudentByIf(student stu);
|
로그인 후 복사
두 번째는 매핑 파일 구성
1 | <select id= "getStudentByIf" parameterType= "stu" resultType= "stu" >select * from student <where> < if test= "stuAge!=0" > and stuAge>#{stuAge} </ if > < if test= "stuName!=null" > and stuName LIKE '%' #{stuName} '%' </ if > </where></select>
|
로그인 후 복사
테스트
1 | studentDao dao = MyBatis.getSessionTwo().getMapper(studentDao.= "z" List<student> list= "----------" +
|
로그인 후 복사
---- ------ zhangyu
--- ------zy
------------zy
------------zhang
b : 분류 시 선택
이 방법은 Java와 동일합니다. 선택 루프 구조의 원리는 동일합니다. 여러 상황을 판단하려면 매핑 파일을 수정하면 됩니다.
1 | public List<student> getAllStudentByLike(Map<String, Object> userMap);
|
로그인 후 복사
매핑 file
1 | <span style= "color: #0000ff" ><</span><span style= "color: #800000" >select </span><span style= "color: #ff0000" >id</span><span style= "color: #0000ff" >= "getAllStudentByLike" </span><span style= "color: #ff0000" > parameterType</span><span style= "color: #0000ff" >= "Map" </span><span style= "color: #ff0000" > resultType</span><span style= "color: #0000ff" >= "stu" </span><span style= "color: #0000ff" >></span><span style= "color: #000000" >select * from student</span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >where</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >choose</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >when </span><span style= "color: #ff0000" >test</span><span style= "color: #0000ff" >= "stuName!=null" </span><span style= "color: #0000ff" >></span><span style= "color: #000000" > stuName like CONCAT('%',#{stuName},'%')</span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >when</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >when </span><span style= "color: #ff0000" >test</span><span style= "color: #0000ff" >= "stuAge!=0" </span><span style= "color: #0000ff" >></span><span style= "color: #000000" > stuAge> #{stuAge}</span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >when</span><span style= "color: #0000ff" >><br/></span>
|
로그인 후 복사
1 2 3 | <otherwise>
1=1
</otherwise>
|
로그인 후 복사
1 | <span style= "color: #0000ff" ><br/></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >choose</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >where</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >select</span><span style= "color: #0000ff" >></span>
|
로그인 후 복사
결과
c: foreach를 사용하여 복잡한 쿼리를 완료하는 세 가지 방법이 있습니다.
첫 번째 방법: 전달된 매개 변수는 배열 유형입니다
두 번째 유형: 목록 컬렉션에 전달
1 2 3 4 5 6 7 8 9 | 映射文件配置 <!--跟据学生id查询学生Interger-->
<select id= "getStudentBystuId_foreach_array" resultMap= "studentList" >select * from student< if test= "array.length>0" >where stuId IN < foreach collection= "array" item= "stu" open= "(" separator= "," close= ")" > #{stu}</ foreach >
</ if >
</select>
|
로그인 후 복사
1 2 3 4 | Integer[] ints = {2,3,4};
List<student> list = dao.getStudentBystuId_foreach_array(ints); for (student item:list) {
System.out.println(item.getStuName());
}
|
로그인 후 복사
테스트:
1 | public List<student> getStudentBystuId_foreach_list(List<Integer> list);
|
로그인 후 복사
세 번째 유형: 지도 기반 컬렉션
1 2 | <!--跟据学生id查询学生list方式--><select id= "getStudentBystuId_foreach_list" resultMap= "studentList" >select * from student< if test= "list.size>0" >where stuId IN
< foreach collection= "list" item= "stu" open= "(" separator= "," close= ")" >#{stu}</ foreach ></ if ></select>
|
로그인 후 복사
1 2 3 4 5 6 7 8 | studentDao dao = MyBatis.getSessionTwo().getMapper(studentDao. class );
Integer ints = 2;
List<Integer> list = new ArrayList<Integer>();
list.add(ints);
List<student> stulist = dao.getStudentBystuId_foreach_list(list);
for (student item:stulist) {
System.out.println(item.getStuName());
}
|
로그인 후 복사
1 | public List<student> getStudentBystuId_foreach_map(Map<String, Object> stuMap);
|
로그인 후 복사
결과를 인쇄하려면 다음을 수행하세요.
d; 일대다의 두 가지 구현 방법
주로 resultMapper의 구성이 다르기 때문입니다.
인터페이스 방법
1 2 | <!--跟据学生id查询学生map方式--><select id= "getStudentBystuId_foreach_map" resultMap= "studentList" >select * from student where stuId IN
< foreach collection= "stuId" item= "stu" open= "(" separator= "," close= ")" > <!--collection是自己定义的,就是map的key值-->#{stu}</ foreach ></select>
|
로그인 후 복사
매핑 파일 구성
1 2 3 4 5 6 7 8 9 10 11 | <span style= "color: #008000" > Map<String ,Object> stumap = new HashMap<String, Object>();
List<Integer> listStuId = new ArrayList<Integer>();
listStuId.add(2);
listStuId.add(3);
listStuId.add(4);
stumap.put( "stuId" ,listStuId);
List<student> list = dao.getStudentBystuId_foreach_map(stumap);
for (student item:list
) {
System.out.println(item.getStuName());
}</span><span style= "color: #008000" ><br/></span>
|
로그인 후 복사
rrre 에에
1 | public grade getGradeById(int gradeId);
|
로그인 후 복사
1 | <span style= "color: #008000" ><!--</span><span style= "color: #008000" >实现一 对多的第一中实现</span><span style= "color: #008000" >--></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >resultMap </span><span style= "color: #ff0000" >id</span><span style= "color: #0000ff" >= "gradeMapOne" </span><span style= "color: #ff0000" > type</span><span style= "color: #0000ff" >= "grade" </span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >id </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "gradeId" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "gradeId" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >id</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >result </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "gradeName" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "gradeName" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >result</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >collection </span><span style= "color: #ff0000" >property</span><span style= "color: #0000ff" >= "gatStudent" </span><span style= "color: #ff0000" > ofType</span><span style= "color: #0000ff" >= "stu" </span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >id </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "stuUd" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "stuId" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >id</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >result </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "stuName" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "stuName" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >result</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >result </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "stuAge" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "stuAge" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >result</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >collection</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >resultMap</span><span style= "color: #0000ff" >></span><span style= "color: #008000" ><!--</span><span style= "color: #008000" >实现一 对多的第二中实现</span><span style= "color: #008000" >--></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >resultMap </span><span style= "color: #ff0000" >id</span><span style= "color: #0000ff" >= "gradeMap" </span><span style= "color: #ff0000" > type</span><span style= "color: #0000ff" >= "entity.grade" </span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >id </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "gradeId" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "gradeId" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >id</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >result </span><span style= "color: #ff0000" >column</span><span style= "color: #0000ff" >= "gradeName" </span><span style= "color: #ff0000" > property</span><span style= "color: #0000ff" >= "gradeName" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >result</span><span style= "color: #0000ff" >></span><span style= "color: #0000ff" ><</span><span style= "color: #800000" >collection </span><span style= "color: #ff0000" >property</span><span style= "color: #0000ff" >= "gatStudent" </span><span style= "color: #ff0000" > ofType</span><span style= "color: #0000ff" >= "student" </span><span style= "color: #ff0000" > select</span><span style= "color: #0000ff" >= "getStudentById" </span><span style= "color: #ff0000" > column</span><span style= "color: #0000ff" >= "gradeId" </span><span style= "color: #0000ff" >></</span><span style= "color: #800000" >collection</span><span style= "color: #0000ff" >> <!--column的值主要作为下次查询的条件,既查询学生的条件--></span><span style= "color: #0000ff" ></</span><span style= "color: #800000" >resultMap</span><span style= "color: #0000ff" >><br/></span>
|
로그인 후 복사
1 | <select id= "getGradeById" resultMap= "gradeMapOne" >select * from grade,student where grade.gradeId = student.stuGrade and gradeId = #{gradeId}</select><!--ddddddddddddddddddd--><select id= "getGradeById" resultMap= "gradeMap" >select * from grade where gradeId=#{gradeId}</select><select id= "getStudentById" resultType= "entity.student" >select * from student where stuGrade = #{stuGrade}</select>
|
로그인 후 복사
두 가지 방법 모두 인쇄 효과를 얻을 수 있습니다
Plan 1 인쇄 효과
==> gradeId = ? A sql
==> 매개변수: 1(정수)
<== 열: gradeId, gradeName, stuId, stuName, stuAge, stuGrade
<= = 행: 1, S1297, 2, zhangyu, 19 , 1
<== 행: 1, S1297, 3, zy, 20, 1
<== 행: 1, S1297, 4, zy, 21, 1
<== 총계: 3
zhangyu
zy
zy
종료 코드 0으로 프로세스 완료
옵션 2 인쇄 효과
==> 준비 중: gradeId=? ====첫 번째 sql
==> == 열: gradeId, gradeName
<== 행: 1, S1297
====> 선택: stuGrade = ? ==========두 번째 sql
== ==> 매개변수: 1(Long)
<==== 열: stuId, stuName, stuAge, stuGrade
<==== 사용 사용 사용 사용 사용 ' ~행 ‐ 행: 2, zhangyu, 19, 1
<==== > 종료 코드 0
위 내용은 MyBatis의 다중 조건 쿼리 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!