CREATE TABLE test_array (
test_array integer[3][3]
);
create table test_array (
test_array text[][]
)
insert into test.array_test (
string_array
) values (
array['a', 'b']
);
insert into test.array_test (
string_array
) values (
'{"a", "b"}'
);
select * from test.array_test;
insert into auction.auction (
jsonarray
) values (
array['{"date":"2016-12-01", "content":"주무관서 서OO 최고서 발송", "result":"2016-12-01 송달간주"}', '{"date":"2016-12-02", "content":"주무관 박OO 최고서 발송", "result":"2016-12-02 송달간주"}']::json[]
);
해당 컬럼에 'c'라는 element가 담겨있는지 체크하여 담겨있는 로우 출력
select * from test.array_test where ('c')=any(string_array);