Skip to content

Instantly share code, notes, and snippets.

@bartimaeus
Created December 9, 2010 15:49
Show Gist options
  • Save bartimaeus/734870 to your computer and use it in GitHub Desktop.
Save bartimaeus/734870 to your computer and use it in GitHub Desktop.
Example of CakePHP Join
<?php
// Join example
$result = $this->Product->find('all', array(
'fields' => array(
'Product.name',
'ProductCategory.name'
),
'joins' => array(
array(
'table' => 'categories',
'alias' => 'ProductCategory',
'type' => 'LEFT',
'conditions' => array(
'Product.category_id = ProductCategory.id'
)
)
),
'conditions' => array(
'Product.condition' => 'new'
)
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment