Re: UPDATE Multiple Records At Once?

From: lewbloch(at)gmail(dot)com
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: UPDATE Multiple Records At Once?
Date: 2012-04-11 19:20:42
Message-ID: 16939918.22.1334172042328.JavaMail.geo-discussion-forums@pbso10
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Carlos Mennens wrote:
> I'm trying to update a customer record in a table however I need to
> change several values (cust_address, cust_contact, cust_email). My
> question is how do I properly format this into one single command?
>
>
> forza=# SELECT cust_id, cust_name, cust_address, cust_contact, cust_email
> forza-# FROM customers
> forza-# WHERE cust_name = 'iamUNIX'
> forza-# ;
> cust_id | cust_name | cust_address | cust_contact |
> cust_email
> ------------+-----------+-----------------------+----------------+--------------------
> 1000000006 | MobileNX | 200 South Shore Drive | Carlos Mennens |
> carlos(at)xx**xx(dot)com
> (1 row)
>
> I did a quick Google search and I can see there is a method or
> procedure which involves parenthesis () however I'm not sure how I
> would change all the values listed above under one command. Can anyone
> please give me a quick example so I can see how this is drawn out via
> ANSI SQL?

<http://www.postgresql.org/docs/9.1/static/sql-update.html>

--
Lew

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Edward Ross 2012-04-11 20:43:20 Re: Re: Pregunta acerca de la función COPY de POSTGRES
Previous Message Carlos Mennens 2012-04-11 17:50:25 UPDATE Multiple Records At Once?