Re: Make a LOOP function with a delay
От
Merlin Moncure
Тема
Re: Make a LOOP function with a delay
Дата
Msg-id
CAHyXU0xFT874D68VvZwDNzoL8HoyaMVZmKDQS89zu=jbXB8Wuw@mail.gmail.com
Ответ на
Re: Make a LOOP function with a delay (James David Smith)
Список
Дерево обсуждения
Make a LOOP function with a delay James David Smith <james.david.smith@gmail.com>
Re: Make a LOOP function with a delay Merlin Moncure <mmoncure@gmail.com>
Re: Make a LOOP function with a delay James David Smith <james.david.smith@gmail.com>
Re: Make a LOOP function with a delay Merlin Moncure <mmoncure@gmail.com>
On Wed, Jul 24, 2013 at 8:37 AM, James David Smith
wrote:
> Hi Merlin,
>
> Just been messing about this with. I'm a bit confused but trying to
> understand it. When I implement it, I'm told that the column
> 'row_number' isn't recognised. I guessed that you meant to write
> row_number() so tried that, but then it wants an OVER clause.
>
> Also should the line
>
> notice('did row ' || row_number)
>
> Actually have a capital N at the start to match the function we've made?
Notice should have been capitalized -- but will work fine. postgres
folds all non-quoted identifiers to lower case.
row_number came from your example:
> WHERE row_number = 1;
the idea is that instead of picking a particular row of the table, we
are going to do all the rows.
merlin
В списке pgsql-novice по дате отправления