집 >데이터 베이스 >MySQL 튜토리얼 >SQL 열의 쉼표로 구분된 값을 별도의 행으로 변환하는 방법은 무엇입니까?
문제:
코드와 열, 두 개의 열이 있는 테이블이 있습니다. 선언. 선언 열에는 쉼표로 구분된 값 목록이 포함되어 있습니다. 이 데이터를 행으로 변환해야 하며, 각 행은 해당 코드에 대한 별도의 선언을 나타냅니다.
해결책:
이 문제를 해결하는 한 가지 접근 방식은 사용자 정의 SQL 함수:
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;
그런 다음 외부 적용을 사용하여 쿼리에서 이 함수를 활용하여 기존 SQL에 연결할 수 있습니다. table:
select t1.code, s.items declaration from yourtable t1 outer apply dbo.split(t1.declaration, ',') s
이 쿼리는 원하는 결과를 생성합니다.
| CODE | DECLARATION | ----------------------- | 123 | a1-2 nos | | 123 | a2- 230 nos | | 123 | a3 - 5nos |
또는 유사하게 작동하는 CTE(Common Table Expression) 버전을 사용할 수 있습니다.
;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 중국어 웹사이트의 기타 관련 기사를 참조하세요!