Re: [GENERAL] Problem with function invocation
On Mon, Apr 16, 2001 at 03:43:23PM +0200, DaVinci wrote: > Hello. > > When I create next function: > > create function pilpot() returns integer as ' > declare > foo integer; > begin > foo = insert into aviso(user) va
[GENERAL] Problem with function invocation
Hello. When I create next function: create function pilpot() returns integer as ' declare foo integer; begin foo = insert into aviso(user) values(1); return foo; end;