Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 갤럭시탭 with Pen
- 파이썬 TypeError
- 소형주택 세액감면
- chatgpt vs bard
- 라이브러리 vs 패키지
- 가장 많이 사용되는 파이썬 라이브러리
- 전세보증보험
- 오피스텔투자
- 가장 많이 사용되는 파이썬 패키지
- 임대소득외 추가소득이 있을 경우
- robux
- 종합소득세
- 종합과세
- bard 100% 신뢰금지
- 가장 인기있는 파이썬 패키지
- 다주택임대
- chatgpt 100% 신뢰금지
- 상업시설용지 분양
- Python
- Google vs OpenAI
- 공개서적
- 나는 어디로?
- 주택임대사업자
- 주상복합용지 분양
- 오라클 데이터베이스 내장함수
- 2룸 오피스텔 투자
- 데이터 리터러시
- PostgreSQL
- Google vs MicorSoft
- 가장 인기있는 파이썬 라이브러리
Archives
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:131. 함수의 목적
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
'IT > Postgresql DBMS' 카테고리의 다른 글
Comments