Sichanov

13. Rivers in Africa

Oct 7th, 2023
1,364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT c.country_name,
  2.        r.river_name
  3. FROM countries c
  4. LEFT JOIN countries_rivers ON c.country_code = countries_rivers.country_code
  5. LEFT JOIN rivers r ON countries_rivers.river_id = r.id
  6. WHERE c.continent_code = (SELECT con.continent_code from continents con WHERE con.continent_name ='Africa')
  7. ORDER BY c.country_name
  8. LIMIT 5
Advertisement
Add Comment
Please, Sign In to add comment