Re: Is it databases in general, SQL or Postgresql?

From: Jaime Casanova <systemguards(at)gmail(dot)com>
To: Bob Pawley <rjpawley(at)shaw(dot)ca>
Cc: Alban Hertroys <alban(at)magproductions(dot)nl>, Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Is it databases in general, SQL or Postgresql?
Date: 2005-11-15 19:36:26
Message-ID: c2d9e70e0511151136r764f7ffawb957f59ba3f73817@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/15/05, Bob Pawley <rjpawley(at)shaw(dot)ca> wrote:
> No - I mean when each row of pr (contain) has 'ip' inserted as a value or
> data.
>
> Bob
>

create or replace function base() returns trigger as $$
begin
if new.contain = 'ip' then
insert into pi (fluid_id) values (new.fluid_id);
end if;
return null;
end;
$$ language plpgsql;

--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jim C. Nasby 2005-11-15 19:45:24 Re: 3 x PostgreSQL in cluster/redunant
Previous Message Magnus Hagander 2005-11-15 19:24:47 Re: Customizing the Windows installer