Ordna om tabellerna i FROM-satsen som i frågan nedan; annars, kopplingsvillkoret i ON-satsen som är avsett att tillämpas på koppling till dim_location
och fact_flight
tabeller, kommer felaktigt att tillämpas på dim_date
och fact_flight
tabeller som skulle resultera i ovanstående fel:
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