2021-01-07から1日間の記事一覧

メモ:T-SQL 単一列の結果表をシンプルな JsonArray にしたい

create table [データ] ( [Id] bigint not null identity(1, 1) primary key , [Name] nvarchar(20) not null ) go insert into [データ] ([Name]) values (N'あいうえお') , (N'かきくけこ') から ["あいうえお", "かきくけこ"] にしたい場合のクエリ。 参…