Skip to content

Instantly share code, notes, and snippets.

@3manuek
Created April 27, 2016 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3manuek/30b1f8483857018cc82796dd7dda44ae to your computer and use it in GitHub Desktop.
Save 3manuek/30b1f8483857018cc82796dd7dda44ae to your computer and use it in GitHub Desktop.
Building custom stopwords
(ftslab) > select group_concat(WORD) FROM (select distinct WORD
FROM information_schema.INNODB_FT_INDEX_TABLE
group by WORD having count(*) > 1000) d\G
*************************** 1. row ***************************
group_concat(WORD): all,and,any,been,but,can,first,had,has,have,her,him,his,into,
its,like,may,more,nor,not,now,one,only,other,our,said,shall,she,should,some,such,
than,their,them,then,there,these,they,those,thou,thus,thy,time,were,which,would,
yet,you,your
1 row in set (5,28 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment