UPDATE tbl_people
SET
repMovieList = #{repMovieList},
repMovieListDate = NVL2(#{repMovieList}, SYSDATE, NULL)
<!-- <if test="repMovieList != null">문법에러 발생 -->
<!-- <if test="#{repMovieList} != null">에러발생하지 않으나 원하는결과x.문법오류같음 -->
<!-- <if test="#{repMovieList != null} ">에러발생하지 않으나 원하는결과x.문법오류같음 -->
<!-- repMovieListDate = SYSDATE -->
<!-- </if> -->
<!-- repMovieListDate = #{repMovieListDate} -->
WHERE peopleCd = #{peopleCd}