createSubquery()
を使用します Doctrineでサブクエリを作成する関数。次に、サブクエリをメインクエリにネストできます。
例
// build root query
$query = Doctrine_Query::create()
->from('Movie m')
->where('name = ?', 'Prometheus')
;
// build subquery
$subquery = $query->createSubquery()
->from('SeenMovie sm')
->where('m.name = sm.name')
;
// nest subquery and execute
$query->where('EXISTS (' . $subquery->getDql() . ')')->execute();
参考資料
任意の複雑さのDoctrineサブクエリを作成するための防弾パターン