> 데이터 베이스 > MySQL 튜토리얼 > 쉼표로 구분된 열 데이터를 SQL의 고유한 행으로 변환하는 방법은 무엇입니까?

쉼표로 구분된 열 데이터를 SQL의 고유한 행으로 변환하는 방법은 무엇입니까?

Patricia Arquette
풀어 주다: 2025-01-05 10:31:49
원래의
624명이 탐색했습니다.

How to Transform Comma-Separated Column Data into Distinct Rows in SQL?

SQL의 분할 열 데이터에서 행 데이터 추출

열 데이터를 고유한 행으로 분할하려면 사용자 지정 함수를 활용하고 적용할 수 있습니다. 외부 조인을 사용하여 기존 테이블에 추가합니다. 이를 통해 다음과 같이 데이터를 변환할 수 있습니다.

Code  Declaration
123   a1-2 nos, a2- 230 nos, a3 - 5nos
로그인 후 복사

원하는 형식으로:

Code  Declaration 
123   a1 - 2nos 
123   a2 - 230nos 
123   a3 - 5nos
로그인 후 복사

분할 함수 사용

','를 사용하여 데이터를 분리하는 [dbo].[Split]이라는 분할 함수 구분 기호:

create FUNCTION [dbo].[Split](@String varchar(MAX), @Delimiter char(1))       
returns @temptable TABLE (items varchar(MAX))       
as       
begin      
    declare @idx int       
    declare @slice varchar(8000)       

    select @idx = 1       
        if len(@String)<1 or @String is null  return       

    while @idx!= 0       
    begin       
        set @idx = charindex(@Delimiter,@String)       
        if @idx!=0       
            set @slice = left(@String,@idx - 1)       
        else       
            set @slice = @String       

        if(len(@slice)>0)  
            insert into @temptable(Items) values(@slice)       

        set @String = right(@String,len(@String) - @idx)       
        if len(@String) = 0 break       
    end   
return 
end;
로그인 후 복사

분할 함수 적용

쿼리에서 분할 함수를 사용하여 새 테이블을 원본에 조인:

select t1.code, s.items declaration
from yourtable t1
outer apply dbo.split(t1.declaration, ',') s
로그인 후 복사

이렇게 하면 원하는 출력이 생성됩니다.

CTE

또는 CTE(공통 테이블 표현식) 버전을 구현할 수 있습니다:

;with cte (code, DeclarationItem, Declaration) as
(
  select Code,
    cast(left(Declaration, charindex(',',Declaration+',')-1) as varchar(50)) DeclarationItem,
         stuff(Declaration, 1, charindex(',',Declaration+','), '') Declaration
  from yourtable
  union all
  select code,
    cast(left(Declaration, charindex(',',Declaration+',')-1) as varchar(50)) DeclarationItem,
    stuff(Declaration, 1, charindex(',',Declaration+','), '') Declaration
  from cte
  where Declaration > ''
) 
select code, DeclarationItem
from cte
로그인 후 복사

위 내용은 쉼표로 구분된 열 데이터를 SQL의 고유한 행으로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿