On Tue, 3 Oct 2000, Robert Kernell wrote:
> Hi. LIKE does case sensitive string matching. Is there an easy way to do case
> insensitive string matching?
Use "WHERE lower(a) LIKE lower(b)" or use one of the case insensitive
regexp operators instead
(http://www.postgresql.org/docs/aw_pgsql_book/node119.html#8125)
--
Tod McQuillin