Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有简单的(H)SQL 查询:
SELECT f FROM Factory f LEFT JOIN FETCH f.products p LEFT JOIN FETCH p.customers WHERE f.id = (:id)
但是结果包含多个重复的products对象。我该如何解决这个问题?
products
请注意:customers并且products是集合,即工厂与产品之间以及产品与客户之间存在一对多关联。
customers
这是我的建议。
这应该能够处理重复项。