I've got a query:
select count(*) from `table` where `something`>123
If the table has few million records, the query runs really slow even though there's an index on column something. However, in fact I'm interested in value of:
min(100000, count(*))
So is there any way to prevent MySQL from counting rows when it already found 100k? I've found something like:
select count(*) from (select 1 from `table` where `something`>123 limit 100000) as `asd`
It's much faster than count(*) if the table has a few million matching entries, but count(*) runs much faster when there are less than 100000 matches.
Is there any way to do it faster?
123and the other is23. – Kevin Dec 12 '11 at 17:05something? Are you using InnoDB? – Marcus Adams Dec 12 '11 at 17:24count(id)whereidis the name of a distinct indexed column? I know this can sometimes be faster (and sometimes not) with other DBs. – Jon Hanna Dec 12 '11 at 20:00