本文介绍了如何删除由array_agg postgres函数生成的重复项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人知道如何重写下面的SQL查询以生成结果,该结果仅包含一次出现的名称吗? (结果按用户分组)。
Does anyone an idea how to rewrite following SQL query to generate results, that would contains only one occurrence of name? (results grouped by user).
查询
SELECT array_to_string(array_agg(CONCAT(u.firstname, ' ', u.lastname)), ', ')
FROM log_has_item logitem
INNER JOIN log log ON log.id = logitem.log_id
INNER JOIN worker u ON log.worker_id = u.id
WHERE logitem.company_id = 1
可执行查询位于 。
单击运行SQL按钮,您将得到结果,其中包含两次 Frantisek Smith
推荐答案
您可以在 array_agg
内使用 distinct
关键字:
You can use the distinct
keyword inside array_agg
:
SELECT ARRAY_TO_STRING(ARRAY_AGG(DISTINCT CONCAT(u.firstname, ' ', u.lastname)), ', ')
FROM log_has_item logitem
INNER JOIN log log ON log.id = logitem.log_id
INNER JOIN worker u ON log.worker_id = u.id
WHERE logitem.company_id = 1
这篇关于如何删除由array_agg postgres函数生成的重复项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!