Re: [GENERAL] current thinking on Amazon EC2?

2012-03-20 Thread Simon Tokumine
On Mar 19, 2012, at 10:59 AM, Welty, Richard wrote: > i just finished this thread from May of last year, and am wondering if this > still represents consensus thinking about postgresql deployments in the EC2 > cloud: > > http://postgresql.1045698.n5.nabble.com/amazon-ec2-td4368036.html > > Yes,

Re: [GENERAL] can not use the column after rename

2011-12-21 Thread Simon Tokumine
Hi Salah, This is equivalent: WITH numbers AS (SELECT 1 AS a, 2 AS b) SELECT a, b, a+b AS c FROM numbers; S On Wed, Dec 21, 2011 at 11:39 AM, salah jubeh wrote: > Hello, > > Why I can not do something like this in Postgres. > > SELECT 1 as a , 2 as b , a + b as c ; > > Regards > > >