The following SQL statement lists the number of different (distinct) customer countries:

PHOTO EMBED

Mon Jul 25 2022 21:33:23 GMT+0000 (Coordinated Universal Time)

Saved by @MC1

SELECT Count(*) AS DistinctCountries
FROM (SELECT DISTINCT Country FROM Customers);
content_copyCOPY