-
Mybatis 에서 where IN 사용 <foreach>, jdbcType=VARCHARWEB/BACK 2022. 5. 25. 14:20반응형
mybatis 에서 where IN () 을 사용하는 방법입니다.
<update id="Update" parameterType="VO"> UPDATE something SET seq = #{seq} WHERE mykey IN <foreach collection="mykey" item="item" index="index" open="(" close=")" separator=","> #{item, jdbcType=VARCHAR} </foreach> </update>
파라미터인 vo에 mykey[] 가 있습니다.
반응형'WEB > BACK' 카테고리의 다른 글
1/2-GCP 서버 구성하는법, Google Cloud Platform (0) 2022.06.11 MySQL 설치 (window) (1) 2022.05.28 [spring] 배열값 controller로 값 넘기기 (serialize(), ajax) (0) 2022.05.25 [mybatis] insert , update후 seq 가져오기 key property 지정 (0) 2022.05.25 [error]MySQL - Incorrect integer value: '' for column (0) 2022.05.25