首頁 >資料庫 >mysql教程 >如何在 SQL 中將逗號分隔的列資料轉換為不同的行?

如何在 SQL 中將逗號分隔的列資料轉換為不同的行?

Patricia Arquette
Patricia Arquette原創
2025-01-05 10:31:49655瀏覽

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

使用分割函數

使用分割函數
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;

創建一個名為[dbo].[Split] 的split函數使用「,」分隔資料分隔符號:

應用分割函數
select t1.code, s.items declaration
from yourtable t1
outer apply dbo.split(t1.declaration, ',') s

在查詢中使用分割函數將新表連接到原始表:

這將產生所需的輸出。

使用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
或者,您可以實現 CTE(公共表表達式)版本:

以上是如何在 SQL 中將逗號分隔的列資料轉換為不同的行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn