SQL 동적쿼리 오류

songi Jeon·2021년 4월 12일
0

오류 로그

목록 보기
15/16

원인

검색을 위한 동적 쿼리가 작동하지 않았다.

		<if test="schEtc01 != null and schEtc01 !='' and schEtc01 =='0'">
			<if test="searchStartDate != null and searchStartDate != ''">
				AND RGST_DT &gt;= #{searchStartDate}
			</if>
			<if test="searchEndDate != null and searchEndDate != ''">
				AND RGST_DT &lt;= #{searchEndDate}
			</if>
		</if>

해결

if 조건절에서 값에는 홑따옴표를 사용하지 않아도 된다.

<if test="schEtc01 != null and schEtc01 !='' and schEtc01 ==0"></if>

profile
비전공자가 백엔드 개발자 도전하는 블로그

0개의 댓글