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

Pagina Php/MySql "Ricerca avanzata".

Suggerirei l'uso di MySQL FullText Search utilizzandolo con le Ricerche booleane full-text funzionalità dovresti essere in grado di ottenere il risultato desiderato.

Modifica:

Esempio richiesto in base alle condizioni richieste ("È solo un campo e possono scegliere una delle 4 opzioni (cioè 1 parola, parole esatte, almeno 1 parola, senza il termine).")

Presumo che tu stia usando php in base al tuo post iniziale

<?php
$choice = $_POST['choice'];
$query = $_POST['query'];

if ($choice == "oneWord") {
    //Not 100% sure what you mean by one word but this is the simplest form
    //This assumes $query = a single word
    $result = mysql_query("SELECT * FROM table WHERE MATCH (field) AGAINST ('{$query}' IN BOOLEAN MODE)");
} elseif ($choice == "exactWords") {
    $result = mysql_query("SELECT * FROM table WHERE MATCH (field) AGAINST ('\"{$query}\"' IN BOOLEAN MODE)");
} elseif ($choice == "atLeastOneWord") {
    //The default with no operators if given multiple words will return rows that contains at least one of the words
    $result = mysql_query("SELECT * FROM table WHERE MATCH (field) AGAINST ('{$query}' IN BOOLEAN MODE)");
} elseif ($choice == "withoutTheTerm") {
    $result = mysql_query("SELECT * FROM table WHERE MATCH (field) AGAINST ('-{$query}' IN BOOLEAN MODE)");
}
?>

spero che questo aiuti per il pieno utilizzo degli operatori nelle corrispondenze booleane vedere Ricerche booleane full-text