Oracle
오라클 21c JSON 데이터 타입 지원
create table person_collection (id number primary key,  jdoc JSON);
insert into person_collection values(1,'{"person":{"birthdate":"1998-03-04",
                                         "creditscore":[700, 650, 720]}}' );
commit;

 

댓글 0