From: | Thom Brown <thombrown(at)gmail(dot)com> |
---|---|
To: | "Rajan, Pavithra" <RAJANP(at)coned(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Need help on updating an entire column with a list of values, I have. |
Date: | 2010-03-26 14:19:55 |
Message-ID: | bddc86151003260719t62bec974te5d0f7fbd65e30d0@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On 26 March 2010 13:47, Rajan, Pavithra <RAJANP(at)coned(dot)com> wrote:
> Hello - I have this table with 90 rows, which contains 2 columns ,column A
> (type 'numeric') and column B(type text) . Column 'A' is filled with a
> constant number and column 'B' has an unique entry for each row.
>
> E.g. A B
> (numeric) (text)
>
> 15968.0 002
> 15968.0 003
> 15968.0 004
> 15968.0 011
> 15968.0 012
> 15968.0 057
> 15968.0 006
> 15968.0 009
> 15968.0 010
> ..
> ..
> I would here want to update the entire column A with a list of values that I
> have.(
> 06959.0,15308.0,15968.0,18916.2,19961.0,26528.0,29553.0,29872.0,30631.0
> …).How do I accomplish this? Thank you.
>
It looks like you'd need to do something like the following:
UPDATE my_table SET a = 06959.0 WHERE b = '002';
UPDATE my_table SET a = 15308.0 WHERE b = '003';
UPDATE my_table SET a = 15968.0 WHERE b = '004';
etc
Not sure about your column layout though. The primary key (in this
case your column B) would usually appear as the first column, and does
it always contain numbers? If so, wouldn't an int be better?
Thom
From | Date | Subject | |
---|---|---|---|
Next Message | Alan McKay | 2010-03-26 14:20:28 | Re: Does anyone use in ram postgres database? |
Previous Message | Rajan, Pavithra | 2010-03-26 14:16:48 | Re: Need help on updating an entire column with a list of values, I have. |