What is the result of the SQL query 'SELECT COUNT(DISTINCT country) FROM customers;'?
Q1. What is the result of the SQL query 'SELECT COUNT(DISTINCT country) FROM customers;'?
Answer: Total number of distinct countries
Explanation: The SQL query uses the COUNT(DISTINCT) function to count the number of unique countries in the customers table.