Search Postgresql Archives

Re: Setting expire date on insert/modify

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 24 Jan 2006, Foster, Stephen wrote:

> CREATE OR REPLACE FUNCTION "TF_BannerAd_Ads_InsMod"()
>   RETURNS "trigger" AS
> $BODY$
> DECLARE
> 	ExpireDate timestamptz;	-- Date the Banner Ad will expire.
> 	StartDate char(10);	-- Date the Banner Ad was created or
> renewed
> 	NumOfDays char(10);	-- Number of Dates the Ad will be in
> place.
> BEGIN
> 	StartDate := to_char(NEW.bannerad_creationdate, 'YYYY-MM-DD');
> 	NumOfDays := to_char(NEW.bannerad_term, '99999');
> 	ExpireDate := (date 'StartDate' + integer 'NumOfDays');

I think something like:

ExpireDate := CAST(NEW.bannerad_creationdate as Date) + NEW.bannerad_term;

may work for you.



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux