PostgreSQL 中的 SQL:
create table test.tt (text_text text[]);
insert into test.tt values('{111,4,101803,5}');
它是一个array text[]
. 我想把它转换成json
这样:
{111:44,101803:5} as json
我试过array_to_json
了,但它不能。
PostgreSQL 中的 SQL:
create table test.tt (text_text text[]);
insert into test.tt values('{111,4,101803,5}');
它是一个array text[]
. 我想把它转换成json
这样:
{111:44,101803:5} as json
我试过array_to_json
了,但它不能。