What is the best way to use MySQL full-text search with a self-join?
Posted
by gersh
on Stack Overflow
See other posts from Stack Overflow
or by gersh
Published on 2010-05-18T08:27:39Z
Indexed on
2010/05/18
8:30 UTC
Read the original article
Hit count: 234
I want to do something like:
select a.a_ft,count(b.a_ft) FROM row a JOIN row b on match a.a_ft against (b.b_ft). However, this isn't legal. Basically, I just want to look for similar phrases in my database. What is the easiest way to do this?
© Stack Overflow or respective owner