Key-first scan
This topic shows a sample query that uses a key-first scan, which is an index scan that uses keys other than those listed as lower and upper index filters.
Even
though in this example the database server must eventually read the
row data to return the query results, it attempts to reduce the number
of possible rows by applying additional key filters first. The database
server uses the index to apply the additional filter, c2 =
1 OR c2 = 2
, before it reads the row data.