PHP SQL SELECT where like search item with multiple words

前端 未结 6 1872
暖寄归人
暖寄归人 2020-12-05 03:18

I have a select where like query for a seach form which is as follows:



        
相关标签:
6条回答
  • 2020-12-05 04:00

    I wanted something with basic SQL for my multi word search in MySQL database. So I come up with the following.

    $terms=explode(" ",$search);
    $count=count($terms);
    $sql="SELECT * FROM product WHERE";                     
    for($i=0;$i<$count;$i++)
    {
        if($i!=$count-1)
            $sql = $sql.
            " (pname LIKE '%$terms[$i]%' OR category LIKE '%$terms[$i]%' OR    
              sub_category LIKE '%$terms[$i]%' OR 
              description LIKE '%$terms[$i]%') AND ";
        else
            $sql = $sql.
            "(pname LIKE '%$terms[$i]%' OR category LIKE '%$terms[$i]%' OR 
             sub_category LIKE '%$terms[$i]%' OR 
             description LIKE '%$terms[$i]%')";
    }    
    
    0 讨论(0)
  • 2020-12-05 04:01

    Er. Not the best solution I'd think but you can break up the words into an array and loop them out into multiple LIKES. Do some replaces to yank out ANDs, ORs etc and then run an explode.

    Then just loop.

    $sql = SELECT * from Buckets where";

    Loop the array, $sql .= " bucketname LIKE '%" . $arrayEl[i] . "% OR'. Just make sure on the last iteration to not include the last OR or append a last line of 0=1 etc.

    Not elegant, not efficient but in this case it'll work. You'd honestly be better off running a full text search if its a text field.

    0 讨论(0)
  • 2020-12-05 04:03

    For your simple case here, you could replace your "and" with a "%" (but I'm guessing you're looking for a more comprehensive answer. (This would also be order specific, as apple would have to come before pear.)

    0 讨论(0)
  • 2020-12-05 04:09

    I think that the best solution would be to use Regular Expressions. It's cleanest and probably the most effective. Regular Expressions are supported in all commonly used DB engines.

    In MySQL there is RLIKE operator so your query would be something like:

    SELECT * FROM buckets WHERE bucketname RLIKE "(?=.*apple)(?=.*and)(?=.*pear)"
    

    Did't tested it, hope that my expression is right for MySQL regexp "dialect".

    More on MySql regexp support:
    http://dev.mysql.com/doc/refman/5.1/en/regexp.html#operator_regexp

    0 讨论(0)
  • So you want an AND search using each of the words entered, rather than the exact string? Howabout something like this:

    $searchTerms = explode(' ', $bucketsearch);
    $searchTermBits = array();
    foreach ($searchTerms as $term) {
        $term = trim($term);
        if (!empty($term)) {
            $searchTermBits[] = "bucketname LIKE '%$term%'";
        }
    }
    
    ...
    
    $result = mysql_query("SELECT * FROM buckets WHERE ".implode(' AND ', $searchTermBits).");
    

    this will give you a query like:

    SELECT * FROM buckets WHERE bucketname LIKE '%apple%' AND bucketname LIKE '%and%' AND bucketname LIKE '%pear%'
    

    change the AND to an OR if you want to match any of the search terms rather than all. Further improvements could involve defining some stop words like 'and' to give better results.

    0 讨论(0)
  • You can split "apple and pear" into 2 strings; "apple" and "pear". Maybe, then you can do WHERE bucketname LIKE '%apple%' OR bucketname LIKE '%pear%'. I don't know if this helps.

    0 讨论(0)
提交回复
热议问题