SQL-分解字段'将数据分成单独的行



例如,给定表alpha:中的以下内容

Field1 | Field2 | Field3
------------------------
Foo    | Bar    | ABCD

我如何将这些数据分解为:

Field1 | Field2 | Field3
------------------------
Foo    | Bar    | A
Foo    | Bar    | B
Foo    | Bar    | C
Foo    | Bar    | D

我相信有一个奇特的join技巧可以做到,但我想不通。速度优化不是优先事项-此查询仅用于一次性报告,所以我不介意它是否慢得像糖蜜(让我有机会泡咖啡!)

您可以通过以下步骤轻松完成:

  1. 步骤1:创建一个sql表值函数,它可以将单词拆分为字符。您可以通过运行以下脚本来完成。

    CREATE FUNCTION [dbo].[SPLITWORD](
    @WORD VARCHAR(MAX) 
    ) RETURNS @words TABLE (item VARCHAR(8000))
     BEGIN
     declare @count int, @total int
     select @total = len(@WORD), @count = 0
     while @count <= @total
     begin
       insert into @words select substring(@WORD, @count, 1)
       select @count = @count + 1
     end
     RETURN
    END
    

2.步骤运行以下查询,该查询将返回您想要的结果。

    SELECT A.FIELD1 , A.Field2 , B.ITEM
    FROM alpha AS A
    CROSS APPLY
    (
    SELECT * FROM SPLITWORD(A.Field3) WHERE ITEM != ''
    ) AS B

您可以尝试以下操作:

WITH CTE_LenF3 AS 
(
  -- find the length of each field3
  SELECT Field1, Field2, LEN(Field3) as Len_F3
  FROM alpha
)
,CTE_Numbers AS 
(
 --generate numbers from 1 to LEN(Filed3) for each field1,field2 combination
  SELECT Field1, Field2, 1 AS Nmb FROM CTE_LenF3
  UNION ALL
  SELECT c.Field1, c.Field2, Nmb + 1 FROM CTE_Numbers n
  INNER JOIN CTE_LenF3 c ON c.Field1 = n.Field1 AND c.Field2 = n.Field2
  WHERE Nmb + 1 <= LEN_F3
)
--join generated numbers with actual table and use substring to get the characters
SELECT a.Field1, a.Field2, SUBSTRING(a.Field3, n.Nmb, 1)
FROM CTE_Numbers n
INNER JOIN alpha a ON a.Field1 = n.Field1 AND a.Field2 = n.Field2
ORDER BY a.Field1, a.Field2, n.Nmb

SQLFiddle DEMO

类似于:

declare @alpha table (Field1 varchar(20), Field2 varchar(20), Field3 varchar(6))
insert into @alpha(Field1, Field2, Field3) values
('Foo','Bar','ABCD')
;With Numbers(n) as (
    select 1 union all select 2 union all select 3 union all
    select 4 union all select 5 union all select 6
)
select Field1,Field2,SUBSTRING(Field3,n,1)
from
    @alpha
        inner join
    Numbers
        on
            n <= LEN(Field3)

(除非你已经有了一个问题中没有提到的方便的Numbers表,在这种情况下它会更简单)

结果:

Field1               Field2               
-------------------- -------------------- ----
Foo                  Bar                  A
Foo                  Bar                  B
Foo                  Bar                  C
Foo                  Bar                  D
DECLARE @xml as xml,@str as varchar(100),@delimiter as varchar(10)
SET @str='A,B,C,D,E'
SET @delimiter =','
SET @xml = cast(('<X>'+replace(@str,@delimiter ,'</X><X>')+'</X>') as xml)
SELECT N.value('.', 'varchar(10)') as value FROM @xml.nodes('X') as T(N)

替换分隔符

以下查询实现功能的任何方式

DECLARE @temp as table(newFiled3 varchar(1))
DECLARE @str_Value varchar(50),@count int,@i int=1
SET @str_Value=(SELECT Field3 FROM alpha)
SET @count=LEN(@str_Value)
WHILE(@i<=@count)
BEGIN
    INSERT INTO  @temp VALUES (SUBSTRING ( @str_Value ,@i , 1 ))
SET @i=@i+1
END

SELECT Field1,Field2,b.newFiled3 
FROM tblStudent a inner join @temp b ON a.Field1='Foo'

无论如何,looping is not a good method,但我们仍然需要这样做,因为您的Filed3 ABCDdynamic

相关内容

最新更新