What is the result of the SQL query 'SELECT * FROM customers WHERE country='USA' OR country='Canada';'?
Q1. What is the result of the SQL query 'SELECT * FROM customers WHERE country='USA' OR country='Canada';'?
Answer: Customers from USA or Canada
Explanation: The SQL query uses the OR operator to select customers from either USA or Canada, resulting in a combined result set.