WHERE push_type_cd = '1'
AND reg_dttm >= '2022-03-29'
대신
WHERE 1 = 1
AND push_type_cd = '1'
AND reg_dttm >= '2022-03-29'
을 쓰면
WHERE 1 = 1
-- AND push_type_cd = '1' => 여기만 주석처리 쉽게 가능 !
AND reg_dttm >= '2022-03-29'
이렇게 쉽게 주석처리 가능하다 .
하나씩 주석처리하면서 쿼리 확인가능 !
LIMIT 걸어서 보는것도 잊지말자
https://dejavuhyo.github.io/posts/why-avoid-using-the-dynamic-query-where-1=1/
위 링크를 보면
지양 해야 한다고 써져있다.
https://stackoverflow.com/questions/1264681/what-is-the-purpose-of-using-where-1-1-in-sql-statements
https://www.navicat.com/en/company/aboutus/blog/1812-the-purpose-of-where-1-1-in-sql-statements