Re: simple (?) join

From: "Oliveiros C," <oliveiros(dot)cristina(at)marktest(dot)pt>
To: "Gary Stainburn" <gary(dot)stainburn(at)ringways(dot)co(dot)uk>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: simple (?) join
Date: 2009-09-24 17:17:06
Message-ID: 2E407078A6154CF6AFFC6FEFBCF7BFF0@marktestcr.marktest.pt
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

You mean
to list the complete orders table and for each of its records, the
corresponding record on the orders_log with the latest ol_timestamp?

SELECT *
FROM orders_log main
JOIN
(
SELECT orders.*, MAX(orders_log.ol_timestamp) as latest
FROM orders
NATURAL JOIN orders_log
GROUP BY orders.*
) subquery
ON main.ol_timestamp = subquery.latest
AND main.o_id = subquery.o_id

This query is untested, but could you give it a try?

Then tell me the results.

NB - I am not sure if it is legal to use * on a GROUP BY clause, but if it
isnt please kindly substitute by orders.o_id, orders.next_field, etc...

Best,
Oliveiros

----- Original Message -----
From: "Gary Stainburn" <gary(dot)stainburn(at)ringways(dot)co(dot)uk>
To: <pgsql-sql(at)postgresql(dot)org>
Sent: Thursday, September 24, 2009 4:16 PM
Subject: [SQL] simple (?) join

> Hi folks.
>
> I have two tables
>
> create table orders (
> o_id serial primary key
> ...
> );
>
> create table orders_log (
> ol_id serial primary key,
> o_id int4 not null references orders(o_id),
> ol_timestamp timestamp,
> ol_user,
> );
>
> How can I select all from orders and the last (latest) entry from the
> orders_log?
>
> Cheers
> --
> Gary Stainburn
>
> Gary's Haircut 700
> Please visit http://www.justgiving.com/Gary-Stainburn/ to help me
> raise money for Cancer Research - in return I'll have my head shaved
>
>
> --
> Sent via pgsql-sql mailing list (pgsql-sql(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Oliveiros C, 2009-09-24 17:26:35 Re: simple (?) join
Previous Message Gary Stainburn 2009-09-24 15:16:36 simple (?) join