문제

I Have two types of queries

  1. ID IN ('123456',1234456)
  2. ID IN ('123456','1234456')

Strange issue is when i used mysql explain query 1st query is not using index on ID while second query is using index.

I am really confused why ?

ID IS unique key (int)

도움이 되었습니까?

해결책

You should never mix quoted and unquoted values in an IN list because the comparison rules for quoted values (such as strings) and unquoted values (such as numbers) differ. Mixing types may therefore lead to inconsistent results.

For example, do not write an IN expression like this:

SELECT val1 FROM tbl1 WHERE val1 IN (1,2,'a');

Instead, write it like this:

SELECT val1 FROM tbl1 WHERE val1 IN ('1','2','a');

Ref: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html#function_in

다른 팁

MySQL is apparently not able to use the index if the IN list contains a mixture of different datatypes. In your case, you mix strings and integers.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top