I have the following two YQL queries, each of which work fine on their own, but I'm pretty sure there's a way I haven't been able to find to fetch them both in a single more complicated query:
SELECT * FROM xml WHERE url="http://www.google.com/ig/api?weather=Tbilisi"
AND itemPath="//current_conditions/temp_c"
and
SELECT * FROM html WHERE url='http://amindi.ge/'
AND xpath="//*[@id='maincityholder']/h1"
The questions here with similar wording all turn out to be questions about subselects, use query.multi
which doesn't seem to exist any more, or select something other than *
which I couldn't get to work with either of my queries even in isolation.
It could be that the itemPath
and the xpath
clauses are the problem, but as I say I can't get either to work without these. Am I missing something or is this not possible with my particular queries?