728x90
반응형
가끔씩 값에 따라서 쿼리문을 다르게 해야할때가 있다.
그럴땐 아래와 같이 동적쿼리문을 작성해주면 된다.
<select id="아이디" resultMap="resultMap" parameterType="파라미터값">
<if test="파라미터변수 == 1">
select address, temp_code from region_code where address = #{address}
</if>
<if test="파라미터변수 == 2">
select address, fc_code from region_code where address = #{address}
</if>
</select>
위 와 같이
<if> 를 이용하고 test 안에 조건문을 넣어주면 된다.
반응형
'코딩일기 > 날씨앱 만들기 프로젝트' 카테고리의 다른 글
[AWS] 도메인과 AWS EC2 연결하기 (0) | 2022.01.27 |
---|---|
[MySQL] event 스케줄러 설명 및 사용법 (0) | 2022.01.27 |
[MySQL] 데이터 없으면 Insert 있으면 Update 하는 쿼리 (0) | 2022.01.27 |
[Spring Boot] log 파일 남기는 법 (0) | 2022.01.26 |
[리눅스 / Ubuntu] AWS EC2에 Spring Boot 프로젝트 배포방법 (Maven) (0) | 2022.01.26 |