ホームページ > データベース > mysql チュートリアル > SQL 列のカンマ区切り値を個別の行に変換するにはどうすればよいですか?

SQL 列のカンマ区切り値を個別の行に変換するにはどうすればよいですか?

Mary-Kate Olsen
リリース: 2025-01-05 10:06:45
オリジナル
1035 人が閲覧しました

How to Transform Comma-Separated Values in a SQL Column into Separate Rows?

列データを行に分割するための SQL クエリ

問題:

Code と Code という 2 つの列を持つテーブルがあります。宣言。 「宣言」列には、カンマで区切られた値のリストが含まれます。このデータを行に変換し、各行が対応するコードの個別の宣言を表すようにする必要があります。

解決策:

この問題に対処する 1 つのアプローチは、カスタム 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 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート