38. Defining Barcelona, Spain
without a doubt.
select woeid from
geo.places where
text='barcelona,spain'
39. Then find photos that were
taken there.
select id from flickr.photos.search
where woe_id in (
select woeid from geo.places where
text='barcelona,spain')
40. Check that they have the
right license.
select id from flickr.photos.search
where woe_id in (
select woeid from geo.places where
text='barcelona,spain') and
license=4
41. And get all the information
about them.
select * from flickr.photos.info
where photo_id in (select id from
flickr.photos.search where woe_id in
(select woeid from geo.places where
text='barcelona,spain') and
license=4)