gpt4 book ai didi

sql - 在单个单元格中选择结果

转载 作者:行者123 更新时间:2023-12-02 00:41:04 27 4
gpt4 key购买 nike

如何在单个单元格中选择记录的所有 ID?

例如:

--example select of all values
select id, name, address, phone from table

并获取所有 id's where phone like '%555%' 并在单个字段中显示它们,如:'111 123 234 321 231 234'

最佳答案

If you are using Oracle 11gR2:

select LISTAGG(id, ' ') WITHIN GROUP (ORDER BY id) from table

如果您没有运行 Oracle 11gR2,请检查 wm_concat 函数是否可用并执行:

select wm_concat(id) from table

请记住,您可能希望将这些函数与 group by 子句结合使用。查看我为您提供的链接以获取更多选项。

关于sql - 在单个单元格中选择结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2545639/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com