'How can I optimize DB query?
My db query is taking 5 seconds instead of <1 second earlier and the culprit query is :
explain extended
select A,B,C
from table flow
where
(status in ('X' , 'Y' , 'Z'))
and priority=1
and created<=now()
order by id asc limit 10;
Output:
Indexed:
create index status_created on flow (status, created);
Primary Index on primary key Id.
What does filtered column telling me here with 61839 value?
Solution 1:[1]
INDEX(priority, status) -- column tested with "=" comes first.
Are there really any rows with created >= NOW()
? If so, perhaps "created" is a poor name for the column.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Rick James |