LXLogicExcel
🔥
0
0
AND Operator - Multiple Conditions1 / 10
The AND operator lets you combine multiple WHERE conditions, and returns the records where ALL of the conditions are true. Use AND to find countries that are in Europe and use the Euro as their currency. Try:

SELECT * FROM countries WHERE continent = 'Europe' AND currency = 'Euro';

Ctrl+Enter to submit

🔥 0 streak
0 XP this lesson
All lessons