Skip to content

Instantly share code, notes, and snippets.

@Narven
Forked from andreia/gist:1172483
Created June 17, 2014 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Narven/76d0337b8aba72a4c92e to your computer and use it in GitHub Desktop.
Save Narven/76d0337b8aba72a4c92e to your computer and use it in GitHub Desktop.
<?php
$qs = Doctrine_Query::create()
->from('MyTable1 m')
->leftJoin('m.MyTable2 p');
$res = $qs->execute();
$qs->free();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment