SQL 如何将一个表中的两条或多条拥有相同ID的记录合并为一条?
Col1 Col2 Col3 Col4
1 a b NULL
2 a1 b1 NULL
2 a1 NULL c1
合并效果为:
Col1 Col2 Col3 Col4
1 a b NULL
2 a1 b1 c1 展开
一、创建表:
create table stuUnion
(
sid int identity primary key,
cid int,
id varchar(500)
)
二、添加数据:
insert into stuUnion
elect 1,'a' union
select 1,'b' union
select 2,'c' union
select 2,'d' union
select 3,'e' union
select 3,'f' union
select 3,'g'
三、用标量函数查询:
创建标量函数:
create function b(@cid int)
returns varchar(500)
as
begin
declare @s varchar(500)
select @s=isnull(@s+'','')+rtrim(id)+',' from stuUnion where cid=@cid
return @s
end;
用标量函数查询:
select cid,dbo.b(cid) as id from stuUnion group by cid
用sqlserver的xml:
select cid,ID=STUFF((select ' '+rtrim(id)+',' from stuUnion where st.cid=cid order by id for XML path('')),1,1,'') from stuUnion st group by cid
如果你要是 把上面的数据生成新的数据插入到表中的话...就直接插入操作.
希望能帮到你吧!
go
delete from table_name
go
insert into table_name select * from
go
您的意思是:查询语句是排除相同的记录插入临时表temp_table,删除原有表table_name的记录,最后查出temp_table中的记录插回table_name表中?
我的问题不是这个意思哦!而且我的表中没有重复的记录!不过还是谢谢!
如果只是上面的这种数据可以这样来实现
select col1,max(col2) as col2,max(col3) as col3,max(col4) as col4 from table group by col1
广告 您可能关注的内容 |