일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 스프링 이미지
- 스프링 파일 삭제
- oracle 설치방법
- 파일 업로드
- 스프링 업로드
- 스프링 쇼핑몰 프로젝트
- Bcrypt
- 정규표현식
- 스프링 쇼핑몰
- 스프링 프로젝트 기본 설정
- 인증번호 전송
- 스프링 메일 전송
- 이미지 출력
- 회원가입 기능
- 쇼핑몰 포트폴리오
- BCrypt 적용
- 로그인 기능
- spring 쇼핑몰
- 스프링 프로젝트
- arraylist
- 로그아웃 기능 구현
- ResponseEntity
- 스프링 프로젝트 설정
- 스프링 HikariCP
- spring 프로젝트
- 스프링 게시판
- 쇼핑몰 프로젝트
- 스프링 게시판 구현
- 삭제 구현
- 스프링 포트폴리오
Archives
- Today
- Total
Kim VamPa
[MyBatis] <trim> 사용법 본문
728x90
반응형
목표
MyBatis에서 사용하는 <trim> 사용법
<trim>를 왜 사용하고 어떻게 사용하는지를 알아봅니다.
순서
1. <trim> 이해
2. 예제
1. <trim>
접두어(prefix), 접미어(suffix)를 붙여주거나 지우는 기능을 합니다. <if> 태그를 보완하는 역할을 해줍니다.
<tirm>은 4가지의 속성을 가지고 있습니다.
1) prefix 속성 - <trim>태그 내부 실행될 쿼리문 앞에 설정해둔 속성값을 삽입합니다.
insert into tbl_board(title,content, writer)
<trim prefix="set">
("Board Title", "Board Content", "Board Writer")
</trim>
최종 실행 쿼리문 :
insert into tbl_board(title,content, writer)
set("Board Title", "Board Content", "Board Writer")
2) suffix 속성 - <trim>태그 내부 실행될 쿼리문 뒤에 설정해둔 속성값을 삽입합니다.
insert into tbl_board(title,content, writer) set
<trim prefix="(" suffix=")">
"Board Title", "Board Content", "Board Writer"
</trim>
최종 실행 쿼리문 :
insert into tbl_board(title,content, writer)
set("Board Title", "Board Content", "Board Writer")
3) prefixOverrids 속성 - <trim>태그 내부 실행될 쿼리문 가장 앞의 단어가 속성값에 설쟁해둔 문자와 동일할 경우 문자를 지웁니다.
select * from tbl_board where
<trim prefixOverrides="OR">
OR title = "Board Title" AND content = "Board Content"
</trim>
최종 실행 쿼리문 :
select * from tbl_board where
title = "Board Title" AND content = "Board Content"
4) suffixOverrids 속성 - <trim> 태그 내부 실행될 쿼리문 가장 뒤의 단어가 속성값에 설정해둔 문자와 동일한 경우 문자를 지웁니다.
select * from tbl_board where
<trim suffixOverrides="AND">
title = "Board Title" AND content = "Board Content"AND
</trim>
최종 실행 쿼리문 :
select * from tbl_board where
title = "Board Title" AND content = "Board Content"
2. 예제
select * from tbl_board where
<trim preifx="" prefixOverrids=" AND | OR">
<if = test="title != null">
title = #{title}
</if>
<if = test="content != null">
AND content = #{content}
</if>
<if = test="writer != null">
OR writer = #{writer}
</if>
</trim>
실행예상 문장
1. select * from tbl_board where title = #{title}
2. select * from tbl_board where content = #{content}
3. select * from tbl_board where writer = #{writer}
4. select * from tbl_board where title = #{title} AND content = #{content}
5. select * from tbl_board where title = #{title} OR writer = #{writer}
6. select * from tbl_board where content = #{content} OR writer = #{writer}
update tbl_board set
<trim suffix="," suffixOverrides=",">
<if test="title != null">
title = #{title},
</if>
<if test="title != null">
content = #{content},
</if>
<if test="title != null">
writer = #{writer}
</if>
</trim>
예상 실행 쿼리
1. update tbl_board set title = #{title}
2. update tbl_board set content = #{content}
3. update tbl_board set writer = #{writer}
4. update tbl_board set title = #{title}, content = #{content}
5. update tbl_board set title = #{title}, writer = #{writer}
6. update tbl_board set content = #{content}, writer = #{writer}
REFERENCE
DATE
- 2020.03.07
728x90
반응형
'공부 > 데이터베이스' 카테고리의 다른 글
[MyBatis] <foreach> 사용법 (0) | 2021.03.08 |
---|---|
[MyBatis] <choose>, <when>, <otherwise> (1) | 2021.03.06 |
[MyBatis] <sql>, <include> 사용법 (2) | 2021.03.05 |
[MyBatis] <if> 사용법 (1) | 2021.03.04 |
자동값 증가(Oracle, MySQL)(IDENTITY, AUTO_INCREMENT) (4) | 2021.02.03 |
Comments