All thing of the world!

Postgresql to_json/to_jsonb 설명 : 포스트그레스큐엘 함수 본문

IT/Postgresql DBMS

Postgresql to_json/to_jsonb 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 4. 25. 21:15

1. 함수의 목적

   

    Postgresql to_json/to_jsonb 함수는 json에 관련된 함수로서, string(sql값)을 json으로 변환하여 반환한다. 


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT to_json('Fred said "Hi."'::text);

 

    to_json

    ----------------------

    "Fred said \"Hi.\""

 

    SELECT to_jsonb(row(42, 'Fred said "Hi."'::text)) ;

 

    to_jsonb

    ----------------------

    "Fred said \"Hi.\""

 

3. 사용방법

 

    to_json ( anyelement )

    to_jsonb ( anyelement )

 

    

4. 함수 PARAMETER 설명

 

[anyelement]

변환하고자 하는 값을 입력한다.

 

5. 다양한 샘플 표현

 

 

 

 

 Posgresql 내장함수 모음 : atotw.tistory.com/category/IT/Postgresql%20DBMS

Comments