열 데이터를 행으로 분할하는 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;
쿼리에서 이 함수를 활용하려면 외부 적용을 사용하여 기존 테이블을 조인하세요.
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 버전을 다음과 같이 구현할 수 있습니다. 다음:
;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 중국어 웹사이트의 기타 관련 기사를 참조하세요!