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

लारवेल जहां या जहां में

आप केवल whereIn . के लिए खोज कर सकते थे इसे देखने के लिए कोर में कार्य करें। आप यहाँ हैं। इसे आपके सभी सवालों का जवाब देना होगा

/**
 * Add a "where in" clause to the query.
 *
 * @param  string  $column
 * @param  mixed   $values
 * @param  string  $boolean
 * @param  bool    $not
 * @return \Illuminate\Database\Query\Builder|static
 */
public function whereIn($column, $values, $boolean = 'and', $not = false)
{
    $type = $not ? 'NotIn' : 'In';

    // If the value of the where in clause is actually a Closure, we will assume that
    // the developer is using a full sub-select for this "in" statement, and will
    // execute those Closures, then we can re-construct the entire sub-selects.
    if ($values instanceof Closure)
    {
        return $this->whereInSub($column, $values, $boolean, $not);
    }

    $this->wheres[] = compact('type', 'column', 'values', 'boolean');

    $this->bindings = array_merge($this->bindings, $values);

    return $this;
}

देखें कि इसमें तीसरा बूलियन परम है। शुभकामनाएँ।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Hive 1.2 मेटास्टोर सेवा इसे HDFS के बजाय S3 संग्रहण में कॉन्फ़िगर करने के बाद प्रारंभ नहीं होती है

  2. यदि किसी प्रपत्र में संख्या दोहराई जाती है तो त्रुटि उत्पन्न करें

  3. शर्तों की जोड़ी की सूची के लिए खंड में

  4. स्थानीय समय में MySQL टाइमस्टैम्प दिखा रहा है

  5. एक बार में सभी टेबल की मरम्मत करें