집 >데이터 베이스 >MySQL 튜토리얼 >쉼표로 구분된 열 데이터를 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!