Re: case insensitive searches
From: Chuck Fetters <cfetters_at_iac.net>
Date: 1995/07/23
Message-ID: <3uuqtl$165_at_little-miami.iac.net>#1/1
Date: 1995/07/23
Message-ID: <3uuqtl$165_at_little-miami.iac.net>#1/1
Randy Dewoolfson (randyd_at_cais2.cais.com) wrote:
: Anthony Sama (asama_at_netaxs.com) wrote:
: : What's the best way to specify case insensivity in a WHERE
: : clause?
: To match strings withou regard to case you might try
: WHERE UPPER( string1) = UPPER( string2 )
: or the LOWER equivalent..
: Hope it helps
: Randy :)