oracle sql 合并问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle sql 合并问题相关的知识,希望对你有一定的参考价值。

查询数据库表
查询有两条数据 除了一个字段不一样,如何将两条记录合并在一起,然后那个字段由逗号分割开.

id title content type_id
xx xxx xxxx 1111
id title content type_id
xx xxx xxxx 1222
大概意思就是把这两条数据合并起来,oracle有没有相关的方法.
SELECT DISTINCT t.T_OSD_ID AS UNID ,to_char(t.CONTENT) as CONTENT,t.SUBMIT_DATE AS CREATE_TIME,to_char(' ')as SITE_NAME, t.HYPER_LINK AS URL,TYPE_ID,0 as rtt_count,0 as COMMT_COUNT,to_char(' ') as USER_NAME,(nvl(REPLY_NUM,0)+nvl(CLICKS,0)) AS HOTCOUNT
,TO_char(wm_concat(DISTINCT ca.cate_id))as cate_id
FROM T_OSD t
LEFT JOIN T_OSD_CATE ca ON ca.t_osd_id = t.T_OSD_id
where t.T_OSD_ID in( SELECT DISTINCT c.t_osd_id from T_OSD_CATE c where cate_type = 3 )
group by t.T_OSD_ID,CONTENT,t.SUBMIT_DATE,to_char(' '),t.HYPER_LINK,TYPE_ID,0,0,to_char(' '),nvl(REPLY_NUM,0)+nvl(CLICKS,0)

已经完成sql了 感谢大家的回答.

select id,title,content,wm_concat(type_id) from 表 group by id,title,content;

参考技术A A表
id title content type_id
xx xxx xxxx 1111
B表
id title content type_id
xx xxx xxxx 1222
如下操作
select a.id ,a.title, a.content,a.type_id||','||b.type_id from a,b where a.id=b.id
union
select a.id ,a.title, a.content,a.type_id from a where a.id not in(select id from b)
union
select b.id ,b.title, b.content,b.type_id from b where b.id not in(select id from a)
参考技术B 假设你的表叫A
select a.id ,wm_concat(type_id) type_id
from A
group by A.id;
参考技术C select max(id),max(title),max(content),min(type_id)||','||max(type_id) from 表名 ;
或者用分析函数实现
参考技术D 这个需要自己编写聚合函数,我写了一个字符聚合函数,然后可以如下调用
select connstrsum(type_id) from table1 group by id ,title, content

源代码如下
1 . 声明自定义类型头

CREATE OR REPLACE TYPE "STRING_SUM_OBJ" as object (
--聚合函数的实质就是一个对象
sum_string varchar2(4000),
static function ODCIAggregateInitialize(v_self in out string_sum_obj) return number,
--对象初始化
member function ODCIAggregateIterate(self in out string_sum_obj, value in varchar2) return number,
--聚合函数的迭代方法(这是最重要的方法)
member function ODCIAggregateMerge(self in out string_sum_obj, v_next in string_sum_obj) return number,
--当查询语句并行运行时,才会使用该方法,可将多个并行运行的查询结果聚合
member function ODCIAggregateTerminate(self in string_sum_obj, return_value out varchar2 ,v_flags in number) return number
--终止聚集函数的处理,返回聚集函数处理的结果.
)
2.声明自定义类型体
create or replace type body string_sum_obj is
static function ODCIAggregateInitialize(v_self in out string_sum_obj) return number is
begin
v_self := string_sum_obj(null);
return ODCICONST.Success;
end;
member function ODCIAggregateIterate(self in out string_sum_obj, value in varchar2) return number is
begin
/* 连接 */
if length(trim(value))>0 then --20101220
self.sum_string := self.sum_string || ',' || value;
end if ;--20101220
if substr(self.sum_string,1,1)=',' then
self.sum_string :=substr(self.sum_string,2);--20101220
end if ;--20101220
return ODCICONST.Success;
/* 最大值 */
if self.sum_string<value then
self.sum_string:=value;
end if;
/* 最小值 */
if self.sum_string>value then
self.sum_string:=value;
end if;
return ODCICONST.Success;
end;
member function ODCIAggregateMerge(self in out string_sum_obj, v_next in string_sum_obj) return number is
begin
/* 连接 */
if length( trim(v_next.sum_string))>0 then --20101220
self.sum_string := self.sum_string || ',' || v_next.sum_string;
end if ; --20101220
if substr(self.sum_string,1,1)=',' then
self.sum_string :=substr(self.sum_string,2);--20101220
end if ;--20101220
return ODCICONST.Success;
/* 最大值 */
if self.sum_string<v_next.sum_string then
self.sum_string:=v_next.sum_string;
end if;
/* 最小值 */
if self.sum_string>v_next.sum_string then
self.sum_string:=v_next.sum_string;
end if;
return ODCICONST.Success;
end;
member function ODCIAggregateTerminate(self in string_sum_obj, return_value out varchar2 ,v_flags in number) return number is
begin
return_value:= self.sum_string;
return ODCICONST.Success;
end;
end;
3. 声明自定义函数
create or replace function ConnStrSum(value Varchar2) return Varchar2

parallel_enable aggregate using string_sum_obj;
4. 调用方法示例

以上是关于oracle sql 合并问题的主要内容,如果未能解决你的问题,请参考以下文章

合并多个sql更新语句(Oracle)

带条件的 Oracle SQL 合并语句

一次合并到多个语句 Oracle SQL

无法合并时的 Oracle SQL 案例

Oracle SQL - 如何将多列合并为新列

Oracle SQL 合并语句只有一个表和一堆值