学说 1.2 - 学说集合按 id 自动分组

发布于 2024-11-02 17:29:15 字数 187 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新雨望断虹 2024-11-09 17:29:15

如果您确实需要将这些记录合并到一个联合中,解决该问题的一种方法是为每个子查询或表的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文