Skip to content
Advertisement

How to link all tables together?

I need to list countries in which there are customers, the number of customers, the number of orders, and the total amount of money spent by customers from the country. Using w3school database, I calculated separately each country, number of customers, number of orders and total amount spent, but I don’t know how to link all together.

I have just started to study SQL.

Table for number of customers:

Number of orders by country:

Total amount spent by country:

Advertisement

Answer

First you must learn to use proper joins (using the JOIN keyword and an ON clause) and not this old style (using the WHERE clause).
Also it’s a good practice to alias the tables.
Now you have to join all the tables and count the distinct values of the columns like this:

I used the qualifier od for price and quantity because I believe that they are coluns of the table orderDetails.
Or with LEFT JOINs:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement