Subject | Re: [firebird-support] insensitive like |
---|---|
Author | Alexandre Benson Smith |
Post date | 2006-12-15T00:12:36Z |
jesus martinez wrote:
try CONTAINING
SELECT *
FROM mytable
where field containing 'congratulat'
Don't forget that this query will run natural (your query with LIKE with wildcard on the beginning too).
see you !
--
Alexandre Benson Smith
Development
THOR Software e Comercial Ltda
Santo Andre - Sao Paulo - Brazil
www.thorsoftware.com.br
> hello.Jesus,
> i want to do something like this:
>
> SELECT *
> FROM mytable
> where field like '%congratulat%'
>
> field is a blob, but the like is retrieving
> data in a case sensitive way.
>
> what do i have to do to set LIKE to search
> in an insensitive search ?
>
> thanks in advance
> j.-
>
try CONTAINING
SELECT *
FROM mytable
where field containing 'congratulat'
Don't forget that this query will run natural (your query with LIKE with wildcard on the beginning too).
see you !
--
Alexandre Benson Smith
Development
THOR Software e Comercial Ltda
Santo Andre - Sao Paulo - Brazil
www.thorsoftware.com.br