I am trying to grab weather data via Yahoo YQL, here is the query below, my question is how can I query these locations only found in the United States? I tried adding AND country = "US" or place = "United States", but that returns no results. I want to only search the US because when searching for example Danville, CA it brings up 2 results, 1 from the US and 1 from Canada. Any suggestions? Thanks!
SELECT
*
FROM
weather.forecast
WHERE
woeid
IN
(
SELECT
woeid
FROM
geo.places
WHERE
text
IN("Danville, CA","Sunnyvale, CA")
)
AND
u="f"