Re: select extract and subqueries

From: Thomas Lockhart <lockhart(at)fourpalms(dot)org>
To: mike sears <matrix(at)vianet(dot)ca>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: select extract and subqueries
Date: 2001-11-21 03:18:27
Message-ID: 3BFB1D03.118E777A@fourpalms.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> I don't know if its possiable or not but I've been having problems
> trying to extract the timestamp out of one of my columns so that I can
> compare the dates.
...
> but if I try to use a subquery to get the date it gives me a parse
> error.
> en=# SELECT EXTRACT (EPOCH FROM TIMESTAMP (select date from master));
> ERROR: parser: parse error at or near "select"
> is this simply just a limitation of the extract funtion or am I
> missing something?

I'm not *certain* I can tell from your example what you actually want to
do. However, if you want to compare two timestamps (or timestamp vs
date) to see if they are from the same day, then you can use
date_trunc(), like so:

select date_trunc('day', date) from master;

Presumably your query will end up looking something like:

select * from master where date_trunc('day', date) = date 'today';

hth

- Thomas

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andrew G. Hammond 2001-11-21 05:45:12 Re: A newbie's opinion - postgres NEEDS a Windows binary!
Previous Message mike sears 2001-11-21 02:34:02 select extract and subqueries