3
So übergeben Sie einen Tabellentyp mit einem Arrayfeld an eine Funktion in postgresql
Ich habe einen Tisch namens Buch CREATE TABLE book ( id smallint NOT NULL DEFAULT 0, bname text, btype text, bprices numeric(11,2)[], CONSTRAINT key PRIMARY KEY (id ) ) und eine Funktion save_book CREATE OR REPLACE FUNCTION save_book(thebook book) RETURNS text AS $BODY$ DECLARE myoutput text :='Nothing has occured'; BEGIN …