Mysql
 sql >> Database >  >> RDS >> Mysql

Il modo migliore per estrarre elementi simili da un database MySQL

Per le tabelle myisam puoi utilizzare la ricerca di testo completo in linguaggio naturale:http://dev.mysql.com/doc/refman/5.5/en/fulltext-natural-language.html

SELECT * FROM article a
LEFT JOIN articletag at ON (at.articleid = a.articleid)
LEFT JOIN tag t ON (at.tagid = t.tagid)
WHERE MATCH (a.title) AGAINST ('some title' IN NATURAL LANGUAGE MODE)
OR MATCH (t.tagtext) AGAINST ('some tag' IN NATURAL LANGUAGE MODE)
GROUP BY a.articleid # if you don't want get duplicates 

Puoi anche pensare di aggiungere informazioni ridondanti sui tag in un campo (ad es. <taga><tagb><tagz> ) nella tabella degli articoli e aggiornarlo ogni volta che viene aggiunto/rimosso il tag. Ciò semplificherà la query e dovrebbe essere più veloce:

SELECT * FROM article a
WHERE MATCH (a.title, a.tagtext) AGAINST ('some title or tag' IN NATURAL LANGUAGE MODE)