Join three fields into one on same table

From: jrivero <godsea(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Join three fields into one on same table
Date: 2008-05-19 10:51:21
Message-ID: 745c6484-7e2c-464e-ae0f-4867d021b466@56g2000hsm.googlegroups.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi, i need help for a query. I have three fields, year, month and day
into table and need join and update another field named date on same
table.

My problem is not that make update query.

With this query have the value of the update:
> select year || '-' || month || '-' || day || ' 01:00:00' as newdate from table

but this another query not have correct syntax...
> update table set date=(select year || '-' || month || '-' || day || ' 01:00:00' as newdate from table)

Regards,
Jordi

Responses

Browse pgsql-general by date

  From Date Subject
Next Message ${spencer} 2008-05-19 11:57:44 Re: writing a function without installing a language
Previous Message Albe Laurenz 2008-05-19 06:56:47 Re: SSL auth problem