postgresql function insert array code example
Example 1: insert postgres
INSERT INTO films (code, title, did, date_prod, kind)
VALUES ('T_601', 'Yojimbo', 106, '1961-06-16', 'Drama');
Example 2: postgre insert select
insert into TABLENAMEA (A,B,C,D)
select A,B,C,D from TABLENAMEB