RE: SQL regex select

2003-09-24 Thread Ryan Emerle
oes work; just tested it. HTH -Ryan -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 10:11 AM To: CF-Talk Subject: Re: SQL regex select Yes, that's what I'm trying to do. This has to do with an idea for email processing via

Re: SQL regex select

2003-09-24 Thread Howie Hamlin
Thanks, I'll give that a try. Regards, Howie - Original Message - From: "Jason Lees (National Express)" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, September 24, 2003 9:35 AM Subject: RE: SQL regex select > Yes, in

Re: SQL regex select

2003-09-24 Thread Howie Hamlin
would have a rule labeled as [EMAIL PROTECTED] and then any email to that domain would use that rule. Thanks, Howie - Original Message - From: "Jochem van Dieten" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, September 24,

Re: SQL regex select

2003-09-24 Thread Jochem van Dieten
Howie Hamlin wrote: > I have an application where I want to select rows from a table where > the rows match according to a simple regex. For example, say I have > the word "tiger" - I would want to select rows with values like: > > t* > * > ? > tiger > t??er So let me get this straight. You h

RE: SQL regex select

2003-09-24 Thread Jason Lees (National Express)
ember 2003 14:27 To: CF-Talk Subject: SQL regex select I have an application where I want to select rows from a table where the rows match according to a simple regex. For example, say I have the word "tiger" - I would want to select rows with values like: t* * ? tiger t??er Is th

SQL regex select

2003-09-24 Thread Howie Hamlin
I have an application where I want to select rows from a table where the rows match according to a simple regex. For example, say I have the word "tiger" - I would want to select rows with values like: t* * ? tiger t??er Is this possible? Thanks, Howie ~~~