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

CakePHP - Ricerca efficiente di 3 tavoli utilizzando JOIN

Preferisco meno codice con convenzione di denominazione del modello di torta/tabella (tabella db products - nome del modello Product , db tabella prices - nome del modello Price ) per un'ulteriore gestione del progetto. Sembra che tu voglia fare:

$results = $this->Product->find('all', array(
    'fields' => array(
        'Company.name',
        'Product.feature',
        'Price.price'
    ),
    'joins' => array(
        'LEFT JOIN companies AS Company ON Product.company_id = Company.id
         LEFT JOIN prices AS Price ON Product.id = Price.product_id'
    ),
    'conditions' => array(
        'Company.name LIKE' => '%'.$search_term.'%',
        'Product.feature' => $product_feature,
        'Price.price <' => $price
    ),

 ));

ma se Vuoi ottenere prodotti con I tuoi tutti i criteri (azienda e prezzo) solo , Dovresti usare INNER JOIN e GROUP BY Prodotto (group opzione).

Inoltre, se desideri ottenere tutti i prodotti con molti prezzi e risultati aziendali e imposti/collega le relazioni del modello, puoi utilizzare contain opzione, come:

$contain = array(
    'Company' => array(
        // ...
        'conditions' => array('Company.name LIKE' => '%'.$search_term.'%'),
        // ...
    ),
    'Price' => array(
        // you can set: 'fields' => array('id', ...),
        'conditions' => array('Price.price <' => $price),
        // you can set order: 'ordder' => '....'                
    )
);

$this->Product->attach('Containable');
$post = $this->Product->find('all', array(
    // ...
    'contain' => $contain,
    'conditions' => array('Product.feature' => $product_feature),
    // ...
)); 

Quindi otterrai tutti i prodotti con feature => $product_feautre e ottieni LEFT JOIN aziende e prezzi di questi prodotti.

Spero che questo aiuti.