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

Parsing hasil kueri mySQL dan bentuk array untuk if/else

Jika Anda membutuhkan data ini untuk dimuat ke in_array , maka harus dalam bentuk array, Anda tidak dapat menggunakan string json.

$stmt = $dbh->prepare('SELECT DISTINCT cohort_id FROM table_cohorts'); 
$stmt->execute();
$cohort_ids = array();
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
    $cohort_ids[] = $row['cohort_id'];
}

if(in_array($user_input, $cohort_ids)) {
    // do the rest
} else {
    // oops your input is not any of those
}



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Masukkan hasil kueri Mysql ke dalam array di dalam kelas

  2. Bisakah saya menggunakan kemampuan seperti transaksi di pemicu MySQL?

  3. Dapatkan jalur pohon di tabel MySQL

  4. Permintaan MySQL di Inno Setup

  5. Cara Membulatkan Timestamp di MySQL