Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2015 17:01
Show Gist options
  • Save anonymous/36fc140a820c65862df4 to your computer and use it in GitHub Desktop.
Save anonymous/36fc140a820c65862df4 to your computer and use it in GitHub Desktop.
Full-text stats
SELECT word FROM ts_stat('
SELECT to_tsvector(''english'', message)
FROM backlog
WHERE bufferid = 14'
)
WHERE char_length(word) >= 2
ORDER BY nentry DESC, ndoc DESC, word
LIMIT 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment