Source
Query Quora expert answers with SQL
Full-text Quora answers from topic-ranked, view-ranked writers, with question, credential, upvotes, and views — queryable with read-only SQL by writer and text.
Query surfaces
quora.answersquora.writers
Public Quora answer pages; source-native answer records with writer credentials.
Best for
a writer’s answers ranked by upvotes, with the stated credential
token search across question title plus answer body
expertise signal per writer from quora.writers, joined on author_slug
Fields
aidurlauthor_slugauthor_uidquestion_titlequestion_urlquestion_answer_countcreation_timeupdated_timenum_upvotesnum_viewsnum_sharescredentialcontentcontent_rawharvested_slugharvested_atsource_fileloaded_atsearch_text_lc
Read live from the schema registry for quora.answers — 20 columns. Every relation's full contract is served by /v1/scry/schema.
Queries
Most-upvoted answers on a topic
Match lowercase tokens across question and answer, collapse repeats, rank by upvotes.
SELECT aid, author_slug, question_title, num_upvotes, num_views, creation_time
FROM (
SELECT * FROM quora.answers
WHERE hasToken(search_text_lc, 'clickhouse')
ORDER BY updated_time DESC
LIMIT 1 BY aid
)
ORDER BY num_upvotes DESC
LIMIT 20;