public inbox for [email protected]
help / color / mirror / Atom feedFrom: Rich Shepard <[email protected]>
To: [email protected]
Subject: Re: Extract only maximum date from column
Date: Thu, 4 Dec 2025 12:18:14 -0800 (PST)
Message-ID: <[email protected]> (raw)
In-Reply-To: <CANzqJaC9+koXCtuqKFxqZdsyHEk7J3QxOqF3UAwC0W2dEi-6sA@mail.gmail.com>
References: <[email protected]>
<CANzqJaC9+koXCtuqKFxqZdsyHEk7J3QxOqF3UAwC0W2dEi-6sA@mail.gmail.com>
On Thu, 4 Dec 2025, Ron Johnson wrote:
> May not be the only way, but it's how I do it:
> SELECT *
> FROM foo
> WHERE some_dt = (SELECT MAX(some_dt) FROM foo);
>
> It might return more than one row...
Ron,
Didn't quite work for me this way:
select p.person_nbr, p.company_nbr, c.next_contact
from people as p, contacts as c
where c.next_contact (select max(c.next_contact) from c.contacts) >= '2025-11-01'
group by p.person_nbr, p.company_nbr
order by p.person_nbr, p.company_nbr;
Thanks,
Rich
view thread (16+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: Extract only maximum date from column
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox