Genarranger venligst tabellerne i FROM-sætningen som i forespørgslen nedenfor; ellers join-betingelsen i ON-sætningen, der er beregnet til at blive anvendt til at joine dim_location
og fact_flight
tabeller, vil blive anvendt forkert på dim_date
og fact_flight
tabeller, som ville resultere i ovenstående fejl:
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