Re: Subqueryes

From: "Ezequias R(dot) da Rocha" <ezequias(at)fastcon(dot)com(dot)br>
To: Richard Broersma Jr <rabroersma(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Subqueryes
Date: 2007-03-22 14:42:20
Message-ID: 460295CC.7030603@fastcon.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Perfect quite nice. I am doing things that I could not believe I could
do without the community.

Thank you so much.

--
Atenciosamente
Ezequias Rodrigues da Rocha

Richard Broersma Jr escreveu:
>> update myTable
>> set date = (current_date + (Select daysToAdd from base.Table1 where
>> myFKey_id = Table1Id) )
>> where Expire_Date = now()::Date;
>>
>
> Does this work: http://www.postgresql.org/docs/8.2/interactive/sql-update.html
>
> UPDATE myTable
> SET date = current_date + B.daysToAdd
> FROM Table1 B
> WHERE myFKey_id = B.Table1Id;
>
> Regards,
> Richard Broersma Jr.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend
>
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Ezequias R. da Rocha 2007-03-22 19:43:54 Dummy question
Previous Message Richard Broersma Jr 2007-03-22 14:07:53 Re: Subqueryes