array_append(anyarray, anyelement);
create table example(arr smallint[]); insert into example(arr) values('{1, 2, 3}'); -- alternative syntax create table example(arr smallint[]); insert into example(arr) values(array[1, 2, 3]);