Matching escaped strings

2003-08-14 Thread Rob
Hi all, I have the following info in my database ID | Name 1 | Author\'s As you can see, the name value has been escaped. Now, the question is, how do you match on a value that has escaped charaters? I've tried the following SELECT * FROM table WHERE Na

Re: Matching escaped strings

2003-08-14 Thread Fred van Engen
On Wed, Aug 13, 2003 at 09:23:38AM -0500, Jay Blanchard wrote: > [snip] > > ID| Name > > 1 | Author\'s > > As you can see, the name value has been escaped. Now, the question is, > how do you match on a value that has escaped charaters? I've tried the > follo

Re: Matching escaped strings

2003-08-14 Thread Keith C. Ivey
On 13 Aug 2003 at 16:17, Rob wrote: > ID| Name > > 1 | Author\'s > > As you can see, the name value has been escaped. Now, the question > is, how do you match on a value that has escaped charaters? I've > tried the following > > SELECT * FROM table WHERE Na

RE: Matching escaped strings

2003-08-14 Thread Jay Blanchard
[snip] ID | Name 1 | Author\'s As you can see, the name value has been escaped. Now, the question is, how do you match on a value that has escaped charaters? I've tried the following SELECT * FROM table WHERE Name = 'Author\'s' SELECT * FROM table WHERE