All thing of the world!

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

IT/Postgresql DBMS

Postgresql json_populate_recordset/jsonb_populate_recordset 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 4. 28. 10:13

1. 함수의 목적

   

    Postgresql json_populate_recordset/jsonb_populate_recordset 함수는 json에 관련된 함수로서, base 인수에 지정된 형식의 record set으로 반환한다.

 

2. 샘플을 통한 개념 퀵뷰

 

    create type twoints as (a int, b int); 

    select * from json_populate_recordset(null::twoints, '[{"a":1,"b":2}, {"a":3,"b":4}]') 

 

 

3. 사용방법

 

    json_populate_recordset ( base anyelement, from_json json )

    jsonb_populate_recordset ( base anyelement, from_json jsonb ) 

 

    

4. 함수 PARAMETER 설명

 

[base anyelement]

추출될 형식을 지정할 composite type 이름을 입력한다.

 

[from_json json]

정렬할 형식을 지정한 type 명을 입력한다.

 

 

5. 다양한 샘플 표현

 

 

 

 

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

 

Comments