Re: [SQL] plpsql function problem
[EMAIL PROTECTED] writes: > function >. >insert into table1 ... --> trigger function (runs after insert) > . > insert into table2 ... >. >select from table2 ... not found >. > This info looks to be unavailable
[SQL] plpsql function problem
Hi, I'm writing a plpgsql function. There is an insert in it (let's say to table1). This insert causes to call a trigger function which inserts some info to an other table (let's say table2): function . insert into table1 ... --> trigger function (runs after insert)