What is the result of the SQL query 'SELECT * FROM customers WHERE age > 18 AND country='USA';'?
Q1. What is the result of the SQL query 'SELECT * FROM customers WHERE age > 18 AND country='USA';'?
Answer: Customers from USA who are older than 18
Explanation: The SQL query uses the AND operator to select customers who are both from USA and older than 18, resulting in a filtered result set.