Re: Subqueryes - Mailing list pgsql-sql

From Ezequias R. da Rocha
Subject Re: Subqueryes
Date
Msg-id 460295CC.7030603@fastcon.com.br
Whole thread Raw
In response to Re: Subqueryes  (Richard Broersma Jr <rabroersma@yahoo.com>)
List 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
>
>   




pgsql-sql by date:

Previous
From: Hubertus Freiherr von Fuerstenberg
Date:
Subject: Re: growth of the database
Next
From: "Ezequias R. da Rocha"
Date:
Subject: Dummy question