Re: window function to sort times series data?

From: Josh Kupershmidt <schmiddy(at)gmail(dot)com>
To: John Gage <jsmgage(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: window function to sort times series data?
Date: 2010-03-24 19:13:24
Message-ID: 4ec1cf761003241213p26d5bccesdaf5283dda2725ca@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wed, Mar 24, 2010 at 2:38 PM, John Gage <jsmgage(at)gmail(dot)com> wrote:
> In going through the arcana of string functions, I have come across the
> following series of selects that contain, for me, a mysterious "$re$".
>
> -- return all matches from regexp
> SELECT regexp_matches('foobarbequebaz', $re$(bar)(beque)$re$);

The $re$ is just an arbitrary identifier for a dollar-quoted string
constant. See:

http://www.postgresql.org/docs/current/static/sql-syntax-lexical.html

Maybe you're on an old version which doesn't support dollar-quoted strings?

On 8.3 for the above query, I get:

SELECT regexp_matches('foobarbequebaz', $re$(bar)(beque)$re$);
regexp_matches
----------------
{bar,beque}
(1 row)

Josh

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message John Gage 2010-03-24 20:38:30 Dollar quoted strings
Previous Message John Gage 2010-03-24 18:58:28 Help with reg_exp