I try to select from ne_10m_populated_places
both the 15 biggest cities together with the 3~5 ones where FEATURECLA='Admin-0 capital'
(the countries capitals). So for my area, I should get back ~18-20 places. I'am very beginner to SQL, and don't know where how basic operators chain up. I tried:
SELECT * FROM ne_10m_populated_places ORDER BY POP_MAX DESC LIMIT '15'
OR WHERE FEATURECLA='Admin-0 capital'
The first line works, but it fails when I add it the second line. Help welcome !
EDIT: no working answer yet.