1

長いテキストを複数の行に分割する SQL Server の機能はありますか?

1,000 文字あり、1 行あたり最大 80 文字の複数行にテキストを分割する必要があるとしますが、単語の途中ではないスペースでのみ分割できますか?

ありがとう。

4

2 に答える 2

0

組み込みの分割関数はありませんが、次のような複数の部分文字列/文字インデックスを使用できます。

DECLARE @FieldName VARCHAR(MAX) = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'
SELECT  SUBSTRING(@FieldName,1,CHARINDEX(' ',@FieldName,70)-1)
       ,SUBSTRING(@FieldName,CHARINDEX(' ',@FieldName,70)+1,CHARINDEX(' ',@FieldName,140)-CHARINDEX(' ',@FieldName,70))
       ,SUBSTRING(@FieldName,CHARINDEX(' ',@FieldName,140)+1,CHARINDEX(' ',@FieldName,210)-CHARINDEX(' ',@FieldName,140))

デモ: SQL フィドル

または、UDF を検索/作成します。そこにはたくさんあるようです。

cte で substring/charindex メソッドを使用して、結果をピボットすることもできます。

于 2013-09-03T22:34:43.457 に答える