我在桌子下面。它有多个名字
Id AllNames
1 A,B,C
2 A,B
3 X,Y,Z
我想以下面的标准化方式显示数据。
Id Names
1 A
1 B
1 C
2 A
2 B
3 X
3 Y
3 Z
任何人都可以帮我解决。
提前致谢。
答案 0 :(得分:1)
首先,您需要在互联网上找到一百万个sql server拆分功能中的一个。
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=50648
CREATE FUNCTION dbo.Split
(
@RowData nvarchar(2000),
@SplitOn nvarchar(5)
)
RETURNS @RtnValue table
(
Id int identity(1,1),
Data nvarchar(100)
)
AS
BEGIN
Declare @Cnt int
Set @Cnt = 1
While (Charindex(@SplitOn,@RowData)>0)
Begin
Insert Into @RtnValue (data)
Select
Data = ltrim(rtrim(Substring(@RowData,1,Charindex(@SplitOn,@RowData)-1)))
Set @RowData = Substring(@RowData,Charindex(@SplitOn,@RowData)+1,len(@RowData))
Set @Cnt = @Cnt + 1
End
Insert Into @RtnValue (data)
Select Data = ltrim(rtrim(@RowData))
Return
END
然后你需要一个光标或东西来遍历每一行。拆分列然后插入您选择的表中。
Declare @denorm table (
id int,
val varchar(50)
)
Declare @denormCol varchar(max),@originalId int
declare stackCursor CURSOR LOCAL FAST_FORWARD FOR
select id,allText
from yourTable
FETCH NEXT FROM stackCursor
INTO @denormCol,
@originalId
WHILE @@FETCH_STATUS = 0
BEGIN
insert into @denorm
Select @originalId,Data
from dbo.Split(@denormCol,',')
END
CLOSE stackCursor
DEALLOCATE stackCursor
答案 1 :(得分:0)
仅仅因为我喜欢选择另一种方式,你可以做到这一点是一个cte我没有看到它这样做,但它对我有意义。作为一个方面不是我没有sql服务器与我如果你遇到最大递归你可能不得不在第二个所有名称情况下的子串的开头添加1 /
with recCTE as (
select id,substring(allNames,0,charindex(',',allNames)) name,substring(allNames,charindex(',',allNames),len(allNames)-charindex(',',allNames)) allNames
from yourTable
union all
select id,
case when charindex(',',allNames) >0 then
substring(allNames,0,charindex(',',allNames)) name
else
allNames name
end
,case when charindex(',',allNames) >0 then
substring(allNames,charindex(',',allNames),len(allNames)-charindex(',',allNames)) allNames
else
''
end
from recCTE
where allNames <> ''
)
select id,name
from recCTE