Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

वर्डप्रेस ने IN() कंडीशन के साथ स्टेटमेंट तैयार किया

इस कोड को आजमाएं:

// Create an array of the values to use in the list
$villes = array("paris", "fes", "rabat");    

// Generate the SQL statement.
// The number of %s items is based on the length of the $villes array
$sql = "
  SELECT DISTINCT telecopie
  FROM `comptage_fax`
  WHERE `ville` IN(".implode(', ', array_fill(0, count($villes), '%s')).")
";

// Call $wpdb->prepare passing the values of the array as separate arguments
$query = call_user_func_array(array($wpdb, 'prepare'), array_merge(array($sql), $villes));

echo $query;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. 1970 से पहले की तारीखों के लिए स्ट्रेटोटाइम का उपयोग करना

  2. PHP में एक MySQL तालिका से ड्रॉप डाउन बॉक्स को पॉप्युलेट करें

  3. php के लिए mysqlnd कैसे सक्षम करें?

  4. डेटाटाइम कॉलम से तारीख कैसे चुनें?

  5. MySql में DATETIME फ़ील्ड के दिनांक भाग पर कोई अनुक्रमणिका कैसे बनाता है?