Re: example query for postgresql

From: Sim Zacks <sim(at)compulab(dot)co(dot)il>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: example query for postgresql
Date: 2008-01-20 07:30:11
Message-ID: fmutej$hg0$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I've found that multiple simple statements often work faster then convoluted single statements.

Ivan Sergio Borgonovo wrote:
> Is there a place that gives examples of all the kind of queries
> postgresql support?
>
> Sometimes I think if there is a way to obtain a result in just one
> statement without writing a function and it would be nice to have a
> panoramic of all the strategies I could try for single statements.
>
>
> The SQL reference
> http://www.postgresql.org/docs/8.1/interactive/sql-commands.html
> isn't inspirational every time
>
> Even if it is not exactly what I'm looking for a sort of "one liner"
> as the one you find for perl, sed, awk...
>
> As an example of things the kind of things I'm looking for:
>
> update system
> set weight=subselect._avg
> from (
> select round(avg(weight)) as _avg
> from system where type='module'
> ) as subselect
> where name='users_commerce';
>
>
> thx
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sim Zacks 2008-01-20 07:33:35 Re: Registration for PostgreSQL Conference East now open
Previous Message Sim Zacks 2008-01-20 07:26:26 Re: plpythonu