Re: sql questions - Mailing list pgsql-general

From Laurenz Albe
Subject Re: sql questions
Date
Msg-id 1532076061.2610.3.camel@cybertec.at
Whole thread Raw
In response to sql questions  (hamann.w@t-online.de)
List pgsql-general
hamann.w@t-online.de wrote:
> a) I am running some select query
> select ... order by ....
> Now, I would like to preserver the ordering through further processing by adding a sequence number
> Of course I can do:
> create temp sequence mseq;
> select xx.*, nextval('mseq') as ord from (select ... order by ....) xx;
> drop sequence mseq;
> Is there a simpler way (avoiding the create/drop parts)

A window function would be the best thing:

SELECT ...,
       row_number() OVER (ORDER BY ...)
FROM ...

> b) can a sql function return the count of affected rows of some query?
> create function merge_names(int, int) returns void as
> $_$
> update namelinks set nid = $2 where nid = $1;
> -- want the affected rows of the above query
> delete from names where nid = $1
> -- return result here
> $_$
> language sql;

You cannot do it in an SQL function.

In PL/pgSQL you can use

   GET DIAGNOSTICS avariable = ROW_COUNT;

Yours,
Laurenz Albe

-- 
Cybertec | https://www.cybertec-postgresql.com


pgsql-general by date:

Previous
From: hamann.w@t-online.de
Date:
Subject: sql questions
Next
From: Thiemo Kellner
Date:
Subject: Re: sql questions