Sample Table

CREATE TABLE 
   `foo` (
        `id` INT NOT NULL AUTO_INCREMENT ,     
        `keyword_ids` VARCHAR(128) ,     
        PRIMARY KEY (`id`)  
   );

Sample Data

INSERT INTO 
    `foo`
SET
    `keyword_ids` = '14,10,5,19,12'

Sample Query

SELECT 
    * 
FROM 
    `foo` 
WHERE 
    (`keyword_ids` LIKE '5,%%' 
    OR 
    `keyword_ids` LIKE '%%,5' 
    OR 
    `keyword_ids` = '5' 
    OR 
    `keyword_ids` LIKE '%%,5,%%')

As per my most recent question, this works just fine but is there a way I can improve it?

link|improve this question

you could normalise it - that would be the first improvement i'd consider – f00 Mar 22 '11 at 16:36
feedback

2 Answers

up vote 2 down vote accepted
SELECT  *
FROM    foo
WHERE   FIND_IN_SET(5, keyword_ids)

Note, however, that this expression is still not sargable, that means an index on keyword_ids cannot improve this query.

You should normalize your model if you want this to be searchable fast.

Another option is to store comma-separated keywords (rather than ids) in the table and create a FULLTEXT index on them:

CREATE FULLTEXT INDEX fx_foo_keyword ON (keywords)

SELECT  *
FROM    foo
WHERE   MATCH(keywords) AGAINST ('+keyword5' IN BOOLEAN MODE)

This, however, would only work on a MyISAM table.

link|improve this answer
Could you explain the "normalize your model" part? – Sam Mar 23 '11 at 9:25
@Sam: create a many-to-many link table foo_keywords (foo_id, keyword_id) – Quassnoi Mar 23 '11 at 11:20
feedback

Take a look at the FIND_IN_SET function.

link|improve this answer
Thanks for the quick answer! – Sam Mar 22 '11 at 16:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.