Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Permintaan untuk PHP/MySql DAN/ATAU untuk pencarian lanjutan

Anda dapat memeriksa bidang mana yang disetel dan membuat kueri yang sesuai saat runtime. sesuatu seperti ini yang dapat Anda lakukan:

$query = "";
$keyword = $_REQUEST['keyword'];
$country = $_REQUEST['country'];
$category = $_REQUEST['category'];
if(isset($keyword)){//if keyword set goes here
   $query = "SELECT * FROM table1 WHERE Name LIKE '%$keyword%' OR ZipCode LIKE '%$keyword%' OR country LIKE '%$keyword%'";
   if(isset($category)){
     $query .= "AND category LIKE '$category'";
   }
   if(isset($country)){
     $query . = "AND country LIKE '$country'"
   }
}else if (isset($category)){ //if keyword not set but category set then goes here
  $query = "SELECT * FROM table1 WHERE category LIKE '$category'";
  if(isset($country)){
    $query . = "AND country LIKE '$country'";
  }
}else if(isset($country)){//if only country set goes here
  $query = "SELECT * FROM table1 WHERE country LIKE '$country'"
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Masalah penyisipan Karakter MySQL UTF-8

  2. Apa cara terbaik untuk memigrasikan Django DB dari SQLite ke MySQL?

  3. Berbagi nilai user_id antara dua tabel MySql

  4. Bagaimana cara mengubah kueri MSSQL CTE ke MySQL?

  5. Base64 sebagai metode sanitasi input pengguna untuk Mysql