Skip to content

Instantly share code, notes, and snippets.

@moniyax
Created September 16, 2011 08:28
Show Gist options
  • Save moniyax/1221558 to your computer and use it in GitHub Desktop.
Save moniyax/1221558 to your computer and use it in GitHub Desktop.
Related Questions By Tags
/*Source: http://stackoverflow.com/questions/246841/how-to-find-the-records-with-most-common-tags-like-the-related-questions-in-stac */
select qt.question_id, count(*)
from question_tags qt
where qt.tag in
( select qt2.tag
from question_tags qt2
where qt2.question_id = 123
)
group by qt.question_id
order by 2 desc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment