단일row data를 쿼리할때 where절에 조건많으면 많을수록 성능이 좋아지나요?



1. select item1, item2, item3 from test_table where id = ???


2. select item1, item2, item3 from test_table where id = ??? and email = ???


3. select item1, item2, item3 from test_table where id = ??? and email = ??? and enabled = true 


데이터수는 당연히 엄청 많다 치고 

3번이 가장 빠르고 2번이 그다음 1번이 제일 느린가요??