Hi
In an YQL query how do I return only the first item of each feed ( example with 2 feeds but i will have more )
select channel.title,channel.link,channel.item.title,channel.item.link
from xml where url in(
'http://code.flickr.com/blog/feed/rss/',
'http://www.quirksmode.org/blog/index.xml'
)
I know of the tail option but that is set over the final result, how can i do this per feed
thanks in advance