Re: Update ordered

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: Andreas Joseph Krogh <andreak(at)officenet(dot)no>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Update ordered
Date: 2014-01-27 15:48:58
Message-ID: 52E67FEA.7060506@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 01/27/2014 07:37 AM, Andreas Joseph Krogh wrote:

> > get_next_project_number() etc.?
>
> How are you sure it is not, have you tried something like below to
> test?:
>
> with upd as(
> select id from project order by created asc
> ) select p.id, p.create from project_number where upd.id = p.id;
>
> Yes, that returns ordered result, but the update CTE doens't update with
> the oldest project getting the first sequenc-nr.
> Using a DO statement, iterating over all projects ordered by "created"
> then updating each project matching the current iteration works, but I'd
> like to be able to do it in one statement as I'm sure it's possible...

Well two things;

1) Knowing what is in get_next_project_number() would be helpful?

2) Absent the above I do not see how:

update project p set project_number = get_next_project_number() from upd
where upd.id = p.id;

will actually work. No argument is being passed to
get_next_project_number() so I am not sure how it picks up what
id/created or other reference it is actually working with.

This is borne out by your success using a DO where in the iteration you
do match.

> --
> Andreas Joseph Krogh <andreak(at)officenet(dot)no> mob: +47 909 56 963
> Senior Software Developer / CTO - OfficeNet AS - http://www.officenet.no
> Public key: http://home.officenet.no/~andreak/public_key.asc

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Achilleas Mantzios 2014-01-27 15:49:10 Re: Update ordered
Previous Message Herouth Maoz 2014-01-27 15:42:44 Re: How to insert rows distributed evenly between referenced rows?