Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
676
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. SELECT COUNT(c.country_code) as country_count FROM countries as c
  2. LEFT JOIN mountains_countries as m_c ON c.country_code = m_c.country_code
  3. WHERE m_c.mountain_id IS NULL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement