Re: AS OF queries

From: legrand legrand <legrand_legrand(at)hotmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: AS OF queries
Date: 2017-12-26 22:43:36
Message-ID: 1514328216747-0.post@n3.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

would actual syntax

WITH old_foo AS
(select * from foo as of '<some time>')
select * from foo except select * from old_foo;

work in replacement for

select * from foo except select * from foo as old_foo as of '<some time>';

?

Regards
PAscal

--
Sent from: http://www.postgresql-archive.org/PostgreSQL-hackers-f1928748.html

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2017-12-27 00:27:40 Re: [JDBC] [HACKERS] Channel binding support for SCRAM-SHA-256
Previous Message Fabien COELHO 2017-12-26 22:26:58 Re: [HACKERS] pow support for pgbench