[MyBatis] 동적 쿼리 SQL (if, choose, when,set , foreach ..)
MyBatis에서는 SQL을 동적으로 처리 할 수 있다. 저장 프로시저(stored procedure)를 활용해도 되지만 MyBatis에서 제공하는 기능을 사용해보자. if select * from search_list where seq = #{seq} and title = #{title} and contents = #{contents} if의 조건에 맞지 않으면 select * from search_list where seq = #{seq} title 값이 있으면 select * from search_list where seq = #{seq} and title = #{title} title 과 contents 값이 있으면 select * from search_list where seq = #{seq} ..
[MyBatis]
2021. 7. 20. 16:10
반응형