What is the time complexity of a SQL select query involving multiple conditions ?
SELECT *
FROM products
WHERE price > 100
AND width > 100
AND rating > 100
For example, how does a database engine (InnoDB) process this query with an index on price, width and rating ?
Will the engine process the price first and then filter the results by width and rating ? It means first O(log(n)+k) with k the number of results and n the number of entries in the products table, then O(n) and then O(n), n being the number of results of every last filtering operation ??

price > 100, then it has to be O(n). – svick Jan 20 at 15:10