All thing of the world!

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

IT/Postgresql DBMS

Postgresql json_each/jsonb_each 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 4. 27. 11:35

1. 함수의 목적

   

    Postgresql json_each/jsonb_each 함수는 json에 관련된 함수로서, json 배열을 json key/value pair의 row로 펼친다.


 

2. 샘플을 통한 개념 퀵뷰

 

    select * from json_each('{"a":"foo", "b":"bar"}');

 

 

3. 사용방법

 

    json_each ( json ) 

    jsonb_each ( jsonb ) 

 

    

4. 함수 PARAMETER 설명

 

[json/jsonb]

json/jsonb로 변환하고자 하는 값을 입력한다.

 

5. 다양한 샘플 표현

 

 

 

 

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

Comments