On Thu, 30 Jan 2003, Brian Avis wrote:
> Assuming the data in the text field will resemble any of the following.
>
> Brian K. Avis
> Brian Avis
> Brian
>
> Or whatever combo.
>
>
> Brian Avis wrote:
>
> > I want to run a SELECT on a text field and match any of the following.
> >
> > brian
> > Brian
> > BRIAN
> >
> > Or any other combination. How do I tell SQL to ignore case when
> > doing a SELECT?
the other method, which I forgot to add to my previous post is to user
lower()
select * from table where lower(name) like '%bruce%';