Results
```
select
title,
link,
description
from
rss_channel
where
feed_link = 'https://steampipe.io/blog/feed.xml'
+----------------+---------------------------+----------------------------------------+
| title | link | description |
+----------------+---------------------------+----------------------------------------+
| Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe |
+----------------+---------------------------+----------------------------------------+
> select
title,
link,
description
from
rss_channel
where
feed_link in ('https://steampipe.io/blog/feed.xml','https://www.podcastinsights.com/feed/');
+-------------------+---------------------------------+----------------------------------------+
| title | link | description |
+-------------------+---------------------------------+----------------------------------------+
| Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe |
| Podcast Insights® | https://www.podcastinsights.com | |
+-------------------+---------------------------------+----------------------------------------+
> select
title,
feed_type,
feed_version
from
rss_channel
where
feed_link = 'https://steampipe.io/blog/feed.xml'
+----------------+-----------+--------------+
| title | feed_type | feed_version |
+----------------+-----------+--------------+
| Steampipe Blog | rss | 2.0 |
+----------------+-----------+--------------+
```
Example query results
Results
``` select title, link, description from rss_channel where feed_link = 'https://steampipe.io/blog/feed.xml' +----------------+---------------------------+----------------------------------------+ | title | link | description | +----------------+---------------------------+----------------------------------------+ | Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe | +----------------+---------------------------+----------------------------------------+ > select title, link, description from rss_channel where feed_link in ('https://steampipe.io/blog/feed.xml','https://www.podcastinsights.com/feed/'); +-------------------+---------------------------------+----------------------------------------+ | title | link | description | +-------------------+---------------------------------+----------------------------------------+ | Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe | | Podcast Insights® | https://www.podcastinsights.com |