SQL - Indexes and Query Performance
You created an index on the
What is the most probable reason?
email column, but your query remains slow:SELECT * FROM users WHERE email LIKE '%example.com';
What is the most probable reason?
