turbot/hackernews
steampipe plugin install hackernews

Table: hackernews_best - Query Hacker News Best Stories using SQL

Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by investment fund and startup accelerator, Y Combinator. Users submit stories (known as "posts"), which are voted and commented upon, similar to Reddit.

Table Usage Guide

The hackernews_best table provides insights into the best stories within Hacker News. As a data analyst or a data enthusiast, explore story-specific details through this table, including titles, authors, and scores. Utilize it to uncover information about stories, such as those with the highest upvotes, the most engaged authors, and the most popular topics.

Examples

Best stories by score

Discover the top-rated stories on Hacker News by sorting them in descending order based on their score. This can be useful for identifying popular trends and high-interest topics within the community.

select
*
from
hackernews_best
order by
score desc;
select
*
from
hackernews_best
order by
score desc;

Best stories with most comments

Discover the most engaging stories on Hackernews by sorting them according to the number of comments they have received. This can be useful for understanding what topics or story types generate the most discussion among users.

select
*
from
hackernews_best
order by
descendants desc;
select
*
from
hackernews_best
order by
descendants desc;

Schema for hackernews_best

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
bytextThe username of the item's author.
deadbooleanTrue if the item is dead.
deletedbooleanTrue if the item is deleted.
descendantsbigintIn the case of stories or polls, the total comment count.
idbigint=The item's unique id.
kidsjsonbThe ids of the item's comments, in ranked display order.
parentbigintThe comment's parent: either another comment or the relevant story.
partsjsonbA list of related pollopts, in display order.
pollbigintThe pollopt's associated poll.
scorebigintThe story's score, or the votes for a pollopt.
texttextThe comment, story or poll text. HTML.
timetimestamp with time zoneTimestamp when the item was created.
titletextThe title of the story, poll or job. HTML.
typetextThe type of item. One of "job", "story", "comment", "poll", or "pollopt".
urltextThe URL of the story.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- hackernews

You can pass the configuration to the command with the --config argument:

steampipe_export_hackernews --config '<your_config>' hackernews_best