0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SQLserver: 文字列をn字ずつレコードに格納する

Last updated at Posted at 2020-02-04

SAMPLE

非常に特殊な用途ですが
下記の文字列を指定の字数ずつ分離してレコードに格納します。
XXXYYYWWW
image.png

SQL SERVER

CREATE FUNCTION [dbo].[Onecharacter]
(
    @string NVARCHAR(4000),
  @n INT
)
RETURNS TABLE
AS
RETURN
(
    WITH Onecharacter(stpos,endpos)
	AS( 
	SELECT 1 AS stpos, 1+@n AS endpos
	UNION ALL
	SELECT endpos,endpos+@n
	FROM Onecharacter
	WHERE endpos > 0
		AND endpos < LEN(@string)+1
	)
	SELECT 'data' = SUBSTRING(@string,stpos,COALESCE(NULLIF(endpos,0),LEN(@String)+1)-stpos)
	FROM Onecharacter
)

HOW TO USE

DECLARE @string NVARCHAR(100) = 'XXXYYYWWW';
SELECT data
FROM dbo.Onecharacter(@string,3)
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?