안녀하세요.
오랜만에 질문올려봅니다.
아래 두개의 쿼리가 있습니다.
두개의 성능의 차이가 있을까요?
query1: select idtype,txt,title from newtable idtype IN ('2020', '2021', '2022', '2023');
query2: select idtype,txt,title from newtable idtype='2020' or idtype='2021' or idtype='2022' or idtype='2023';
idtype는 primary key입니다.
레코드수는 200만개정도 들어 있습니다.
1과 2중 어떤걸 쓰는게 효과적일까요?
|