Re: Find "smallest common year"

From: William Leite Araújo <william(dot)bh(at)gmail(dot)com>
To: "Stefan Schwarzer" <stefan(dot)schwarzer(at)grid(dot)unep(dot)ch>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Find "smallest common year"
Date: 2007-09-27 11:52:15
Message-ID: bc63ad820709270452k12ba55fdv6d93438c78182638@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

If I understood your question, maybe it's you want:

SELECT min(<desired data>) FROM table1 JOIN table2 ON (table1.data_field=
table2.data_field);

2007/9/27, Stefan Schwarzer <stefan(dot)schwarzer(at)grid(dot)unep(dot)ch>:
>
> Hi there,
>
> my aim is to plot a line graph for a single country but for two or
> three variables. Now, one could use two different y-axis (if there
> are two data sets with different units); but it's not really the
> right way to analyse data.
>
> One should rather normalize them to a base year to enhance
> comparisons. To achieve this, one would set the values for a specific
> year to 1 (or 100) and put the other values of all variables in
> relation to it.
>
> Thus, taking two variables, say,
>
>
> Fish Catch
> - in Thousand Metric Tons
> - data available for 1975 to 2005
> and
> Total Population
> - in Million People
> - data available for 1960 to 2005
>
> Country is Kenya.
>
> The "smallest common year" would be 1975. One needs thus to set the
> values for that year to 1 (or 100), and calculate the other values of
> the variables in respect to the needed factor.
>
> Now the question is how to find that "smallest common year"
> automatically, via SQL or PHP?
>
> Can anyone give me a hint? Thanks for any help!
>
> Stef
>
> ____________________________________________________________________
>
>
> *Stefan Schwarzer*
>
> Lean Back and Relax - Enjoy some Nature Photography:
> http://photoblog.la-famille-schwarzer.de
>
> Appetite for Global Data? UNEP GEP Data Portal:
> http://geodata.grid.unep.ch
> ____________________________________________________________________
>
>
>
>
>
>

--
William Leite Araújo
Estudante de paternidade - 24a semana

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Stefan Schwarzer 2007-09-27 12:07:12 Re: Find "smallest common year"
Previous Message Stefan Schwarzer 2007-09-27 11:30:02 Find "smallest common year"