PostgreSQL - Indexing Strategies
Given the table
What will the query
users(id INT, email TEXT) and the index:CREATE INDEX idx_lower_email ON users (LOWER(email));What will the query
SELECT * FROM users WHERE LOWER(email) = 'test@example.com'; use?