Re: window function to sort times series data? - Mailing list pgsql-sql

From John Gage
Subject Re: window function to sort times series data?
Date
Msg-id cd15286d1003241138i486a4139ha66c5d57ab8a196c@mail.gmail.com
Whole thread Raw
In response to window function to sort times series data?  (Louis-David Mitterrand <vindex+lists-pgsql-sql@apartia.org>)
Responses Re: window function to sort times series data?  (Josh Kupershmidt <schmiddy@gmail.com>)
List pgsql-sql
In going through the arcana of string functions, I have come across the following series of selects that contain, for
me,a mysterious "$re$".<br /><br />-- return all matches from regexp<br />SELECT regexp_matches('foobarbequebaz',
$re$(bar)(beque)$re$);<br/><br />-- test case insensitive<br />SELECT regexp_matches('foObARbEqUEbAz',
$re$(bar)(beque)$re$,'i');<br /><br />-- global option - more than one match<br />SELECT
regexp_matches('foobarbequebazilbarfbonk',$re$(b[^b]+)(b[^b]+)$re$, 'g');<br /><br />When I run this I get:<br /><br
/>regexp_matches<br/>--------------------------<br /><Unknown(2,003)><br /><br />I have not been able to find out
whatit all means.  Forgive me for my blindness.<br /><br />John<br /><br />P.S. The author of the statements is "alexk"
atCommand Prompt.  They are test statements against Postgres' string functions.<br /> 

pgsql-sql by date:

Previous
From: Louis-David Mitterrand
Date:
Subject: Re: window function to sort times series data?
Next
From: Josh Kupershmidt
Date:
Subject: Re: window function to sort times series data?