Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
500 views
in Technique[技术] by (71.8m points)

plpgsql - How to convert a text field of chars to json using pl/pgsql?

Need to take a text field such as 'O T D' and convert it to a json output like:

"types": [
        "O",
        "T",
        "D"
    ],

This is a sub output of the entire query being exported to json with the json_agg() function. This code works in t-sql:

JSON_QUERY('["' + replace(rtrim(ltrim(type)), ' ','","') + '"]')  as 'types',

i.e. What pl/pgsql function is similar to t-sql JSON_QUERY?

question from:https://stackoverflow.com/questions/65910884/how-to-convert-a-text-field-of-chars-to-json-using-pl-pgsql

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There is no PL/pgSQL function for this, but you can use SQL functions:

SELECT jsonb_agg(x) FROM regexp_split_to_table('O T D', ' ') AS x;

    jsonb_agg    
-----------------
 ["O", "T", "D"]
(1 row)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...