Jump to content

seaching (LIKE)


Destramic

Recommended Posts

This is the best reference I can give you.

 

http://dev.mysql.com/doc/refman/5.5/en/optimization-indexes.html

 

Indexing the tables makes searches much faster.

 

EXPLAIN

http://dev.mysql.com/doc/refman/5.5/en/explain.html

 

I feel MATCH AGAINST or even full text indexing also in booleon mode is much faster than LIKE when comes to searches.

Link to comment
https://forums.phpfreaks.com/topic/226162-seaching-like/#findComment-1167576
Share on other sites

MySQL's full-text searching feature may be of interest to you.  Warning, it's very complicated.  If you need to be told how to set up your table for a simple LIKE match, match...against will be beyond your skill level at the moment.  Bookmark the URL though.

 

-Dan

Link to comment
https://forums.phpfreaks.com/topic/226162-seaching-like/#findComment-1168089
Share on other sites

how do I reach the columns that are not full text?
Make them full text if you want to search them.

 

If you want to simply SELECT the ones that aren't fulltext, fulltext matching works on the WHERE condition.  You can easily say:

SELECT id, name FROM products WHERE MATCH(description) AGAINST('dog')

-Dan

Link to comment
https://forums.phpfreaks.com/topic/226162-seaching-like/#findComment-1168333
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.