Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Relacja MySQL z wieloma tabelami

Wymowny sposób:

// Makes that have forsale nested relation
Make::whereHas('models', function ($q) {
    $q->whereHas('trims', function ($q) {
        $q->has('forsales');
    });
})->get(); // returns Eloquent Collection

Modele z poprawnymi relacjami (hasMany można zastąpić hasOne, jeśli to gdzieś jest rzeczywista relacja):

// Make model
public function models()
{
    return $this->hasMany('CarModel');
}

// CarModel (as you can't use Model name)
public function trims()
{
    return $this->hasMany('Trim');
}
public function make()
{
    return $this->belongsTo('Make');
}

// Trim model
public function forsales()
{
    return $this->hasMany('Forsale');
}
public function carModel()
{
    return $this->belongsTo('CarModel');
}

// Forsale model
public function trim()
{
    return $this->belongsTo('Trim');
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wykonywanie skryptu php w javascript?

  2. Nie można pobrać danych Unicode w języku hindi z PHP i MySQL

  3. co jest nie tak z moją procedurą w mysql?

  4. Mnożenie danych z wiersza MySQL

  5. Muszę zmienić format daty za pomocą php