Re: [SQL] Case in-sensitive

2002-07-24 Thread Josh Berkus
Chris, > > Can I config the Postgresql so that it can match case > > in-sensitive pattern > > automatically? i.e. I don't need to explicit convert the pattern to lower > > case like this: .WHERE lower(textfield) LIKE lower(pattern) > > All you need to do is this: > > ..WHERE textfield I

Re: [SQL] Case in-sensitive

2002-07-24 Thread Christopher Kings-Lynne
> Can I config the Postgresql so that it can match case > in-sensitive pattern > automatically? i.e. I don't need to explicit convert the pattern to lower > case like this: .WHERE lower(textfield) LIKE lower(pattern) All you need to do is this: ..WHERE textfield ILIKE pattern Chris --

[SQL] Case in-sensitive

2002-07-24 Thread Carmen Wai
Hello: Can I config the Postgresql so that it can match case in-sensitive pattern automatically? i.e. I don't need to explicit convert the pattern to lower case like this: .WHERE lower(textfield) LIKE lower(pattern) Thanks a lot! Carmen ___