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

PHP e MySQL condizioni WHERE opzionali

Le altre risposte sono per lo più corrette, ma questo è un modo più semplice per ottenere ciò che è necessario:

$where = array();


if($A != 'any'){ // or whatever you need
    $where[] = "A = $A'";
}
if($B != 'any'){ // or whatever you need
    $where[] = "B = $B'";
}
if($C != 'any'){ // or whatever you need
    $where[] = "C = $C'";
}

$where_string = implode(' AND ' , $where);

$query = "SELECT * FROM table";

if($where){
    $query .= ' ' . $where_string;
}

Ciò consentirà qualsiasi combinazione di condizioni ed espansione.