sql >> データベース >  >> RDS >> Mysql

WordPressは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. DETERMINISTICに似たPL/SQLプラグマはありますが、単一のSQL SELECTのスコープ用ですか?

    2. 日付のHibernate基準

    3. MariaDB RTRIM()とRTRIM_ORACLE():違いは何ですか?

    4. PostgreSQL-データベースの名前を変更