I may sound stupid but if I specify multiple WHERE clauses, does it speed up mysql query or slows it down?
Which one would be faster?
Example 1:
SELECT id FROM table WHERE username='user'
Example 2:
SELECT id FROM table WHERE username='user' AND country='US' AND email='[email protected]'