I want to find the total population in Arab countries at the same time combining the customers join on orders table. Is my code correct? If it’s wrong, please correct it!
here is my code
SELECT country,SUM(population)
FROM orders
JOIN customers ON orders.population;
New contributor
FranzVolfir is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.