On Thu, Oct 27, 2011 at 9:18 AM, Gauthier, Dave <dave(dot)gauthier(at)intel(dot)com> wrote:
> I need to be able to select all records with a col value that matches any of
> a list of regexp. Sort of like...
>
> select a,b,c from foo where d ~ ('^xyz','blah','shrug$');
WHERE d ~ '^xyz|blah|shrug$'
--
Regards,
Richard Broersma Jr.