Re: [SQL] two queryes in a single tablescan

From: Markus Schaber <schabi(at)logix-tt(dot)com>
To: "Stefano Dal Pra" <s(dot)dalpra(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org, pgsql-performance(at)postgresql(dot)org
Subject: Re: [SQL] two queryes in a single tablescan
Date: 2007-10-20 10:58:24
Message-ID: 20071020125824.75df357c@kingfisher.sec.intern.logix-tt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance pgsql-sql

Hi, Stefano,

"Stefano Dal Pra" <s(dot)dalpra(at)gmail(dot)com> wrote:

> suppose you have a large table tab and two (or more) queryes like this:
>
> SELECT count(*),A FROM tab WHERE C GROUP BY A;
> SELECT count(*),B FROM tab WHERE C GROUP BY B;
>
> is there any way to get both results in a single query,
> eventually through stored procedure?
> The retrieved [count(*),A] ; [count(*),B)] data couldnt fit
> on a single table, of course.
>
> The main goal would be to get multiple results while scanning the
> table[s] once only
> thus getting results in a faster way.

PostgreSQL 8.3 contains great improvements in this area, you can simply
start the selects from concurrent connections, and the backend will
synchronize the scans.

Regards,
Markus

--
Markus Schaber | Logical Tracking&Tracing International AG
Dipl. Inf. | Software Development GIS

Fight against software patents in Europe! www.ffii.org
www.nosoftwarepatents.org

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Andreas Kretschmer 2007-10-20 17:19:39 Re: [SQL] two queryes in a single tablescan
Previous Message Scott Marlowe 2007-10-19 18:21:26 Re: how to improve the performance of creating index

Browse pgsql-sql by date

  From Date Subject
Next Message Andreas Kretschmer 2007-10-20 17:19:39 Re: [SQL] two queryes in a single tablescan
Previous Message Scott Marlowe 2007-10-20 09:01:20 Re: backup database tablespace with rsync?