Herschik de tabellen in de FROM-clausule zoals in de onderstaande query; anders de join-voorwaarde in de ON-clausule die bedoeld is om te worden toegepast op deelname aan de dim_location
en fact_flight
tabellen, wordt ten onrechte toegepast op de dim_date
en fact_flight
tabellen die zouden resulteren in de bovenstaande fout:
SELECT
dim_location.country_name,
COUNT(fact_flight.sk_fact)
FROM
dim_date, dim_location
INNER JOIN fact_flight ON dim_location.sk_location = fact_flight.sk_location
WHERE
fact_flight.date_key = dim_date.date_key
GROUP BY
dim_location.country_name