sql >> Database >  >> RDS >> Mysql

Sql-query leeg resultaat op php-code

probeer dit

    $query='SELECT DISTINCT publication_id FROM publications WHERE 1=1 ';
 if(isset($keyword_label) && isset($publication_year)){
 $query.=' AND (publication_key_1="'.$keyword_label.'" OR publication_key_2="'.$keyword_label.'" OR publication_key_3="'.$keyword_label.'" OR 
publication_key_4="'.$keyword_label.'" OR publication_key_5="'.$keyword_label.'" OR publication_key_6="'.$keyword_label.'" OR
publication_key_7="'.$keyword_label.'") AND publication_year="'.$publication_year.'"';
}
if(isset($publication_year)){
$query.=' AND publication_year="'.$publication_year.'"';
}
if(isset($keyword_label)){
$query.=' AND publication_key_1="'.$keyword_label.'" OR publication_key_2="'.$keyword_label.'" OR publication_key_3="'.$keyword_label.'" OR 
publication_key_4="'.$keyword_label.'" OR publication_key_5="'.$keyword_label.'" OR publication_key_6="'.$keyword_label.'" OR
publication_key_7="'.$keyword_label.'"';
}
$query.=' ORDER BY publication_year DESC';

BEWERKEN:

probeer dit te veranderen

   if(!$result) {

naar dit

  if( $result == false ) { 



  1. MySQL:INT converteren naar DATETIME

  2. Verwijzen naar een rij uit een andere tabel (PostgreSQL)

  3. Vouw meerdere rijen arrays samen als de arrays elkaar overlappen

  4. MySQL sleutels uitschakelen en inschakelen