sql >> Database teknologi >  >> RDS >> Mysql

Laravel Eloquent VENSTRE JOIN WHERE NULL

Dette kan løses ved at specificere de ønskede kolonnenavne fra den specifikke tabel som sådan:

$c = Customer::leftJoin('orders', function($join) {
      $join->on('customers.id', '=', 'orders.customer_id');
    })
    ->whereNull('orders.customer_id')
    ->first([
        'customers.id',
        'customers.first_name',
        'customers.last_name',
        'customers.email',
        'customers.phone',
        'customers.address1',
        'customers.address2',
        'customers.city',
        'customers.state',
        'customers.county',
        'customers.district',
        'customers.postal_code',
        'customers.country'
    ]);


  1. Opstart af RAC-database mislykkes med fejl ORA-12547

  2. Sjovt med Djangos nye Postgres-funktioner

  3. Lagring af krypterede data i Postgres

  4. Topfejl at undgå i MySQL-replikering