Hi all,

I'm seeing that EXPLAIN QUERY PLAN returns SEARCH instead of SCAN when
using min() or max(). For example:

sqlite> create table t(a int, b int);
> sqlite> explain query plan select min(b) from t;
> 0|0|0|SEARCH TABLE t


Why is this a SEARCH instead of a SCAN? Furthermore, is it expected that
sometimes SEARCH can be returned with no specified index like this?

Thank you!

Isaac

Reply via email to