标签: doctrine-orm
以下SQL如何:
select * from chapter c where (select count(p.id) from paragraph p where p.chapter_id = c.id) > 0;
可以用Doctrine编写,最好是使用Query Builder吗?
段落表中有一章Many-to-One relationship。
Many-to-One relationship
更新 这不是重复的。以下是对外部实体章节的引用。