Re: Declare variable from other variable - Mailing list pgsql-general

From hubert depesz lubaczewski
Subject Re: Declare variable from other variable
Date
Msg-id 20200205125043.GA32676@depesz.com
Whole thread Raw
In response to Re: Declare variable from other variable  (Raul Kaubi <raulkaubi@gmail.com>)
Responses Re: Declare variable from other variable  (Raul Kaubi <raulkaubi@gmail.com>)
List pgsql-general
On Wed, Feb 05, 2020 at 02:42:42PM +0200, Raul Kaubi wrote:
> Thanks, it worked!
> 
> By the way, what does this "**j"* mean there..? (this does not mean
> multiply there?)

it's normal multiplication.

Your "j" variable is integer.

So, '1 month'::interval * j is some number of months.
> And what if, I would like to declare v_to_date also, so that v_to_date is
> always + 1 month compared to v_date_from..?

v_to_date := v_from_date + '1 month'::interval; ?

Best regards,

depesz




pgsql-general by date:

Previous
From: Raul Kaubi
Date:
Subject: Re: Declare variable from other variable
Next
From: Raul Kaubi
Date:
Subject: Re: Declare variable from other variable