学说 1.2 - 学说集合按 id 自动分组
我有一个 sql 视图,其中多个表通过 union all 连接。该视图有一个列 id,它是每个记录的主键(可以来自不同的表)。
问题在于,因为视图是由联合产生的,可能有多个行具有相同的 id。 在这种情况下,Doctrine_Collection 似乎会自动按 id 列对所有记录进行分组,从而使一些记录消失。 有什么办法可以改变这种行为吗?
I have a sql view with multiple tables joined with union all. The view has a collumn id which is the primary key for each record (which can came from different tables).
The problem ism becuase the view results from a union, there might be more than one row with the same id.
In this cases Doctrine_Collection seems to automaticly group all the records by the id collumn making some records to disapear.
Is there any way to change this behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实需要将这些记录合并到一个联合中,解决该问题的一种方法是为每个子查询或表的 id 字段设置别名,以便 id 字段不会合并。
If you really need to combine those records in a union, one way around that problem is to alias the id field for each subquery or table so that the id fields don't get combined.