I am wanting to be able to lookup a city in the database and then display the associated information on the place. I tried the following:
Code:
select name,fcode,admin1 from geoname where name like '%Quebec%' and country = 'ca' and fcode = 'p.ppl'
but this did not return any results. Am I doing something wrong?