sql server 数据行合并问题

Posted

tags:

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

哪位高手帮忙看看这些数据用sql该怎么改造啊?
-----------------
身份证 姓名 性别 出生日期
00001 张三 男 1985-01-01
00002 李四 女 1978-05-09
00003 王五 男 1989-10-24
00001 张三 1986-11-20
00002 赵六 男 1988-05-10

改造后:
-----------------
身份证 姓名 性别 出生日期
00001 张三 1986-11-20
00002 赵六 男 1988-05-10
00003 王五 男 1989-10-24
做些补充说明:通过相同身份证号码对个人信息进行更新,数据库是存在自增长ID的,需要以ID数值较大的数据为准,但要是 字段值为null则保留原数据,为空则更新为空 注:这里认为 null 和''不同处理方式不同
-----------------
身份证 姓名 性别 出生日期
00001 张三 男 1985-01-01
00002 李四 女 1978-05-09
00003 王五 男 1989-10-24
00001 张三 1986-11-20
00002 李四 男 null

改造后:
-----------------
身份证 姓名 性别 出生日期
00001 张三 1986-11-20
00002 李四 男 1978-05-09
00003 王五 男 1989-10-24

- -!只要sql server2000 支持的语句,oracle的 不行呢~

参考技术A select a.身份证,a.姓名,a.性别,a.出生日期
from (
select 身份证,姓名,性别,出生日期, row_number() over(partition by 身份证 order by 4 desc) r
) a
where r = 1;
就是按身份证进行分组,分组后取日期最大的那一行。

如果日期有空的情况,就把order by 4改为:
order by nvl(出生日期,to_date('19000101','yyyymmdd'))
就是说,出生日期为空的话,就默认使用1900年1月1日,应该没有出生日期比这个小的吧,然后倒序排取日期最大的。
参考技术B 看不出什么规律?

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. 调用方法示例

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

SQL Server:将多行合并为 1 行

sql server同一个表中两行数据合并为一行。如表A: name age num ab

Oracle 10g, 11g, MySQL, SQL SERVER (不支持 MATCH RECOGNIZE ) 如何将两个数据行警告关闭电源和电源合并为一个

在SQL Server中将多行相同id的行合并为一行[关闭]

SQL SERVER: 合并相关操作(Union,Except,Intersect) - 转载

oracle sql 合并问题