Subject | Re: [ib-support] Substring with a specific text element |
---|---|
Author | Woody |
Post date | 2001-12-04T19:21:19Z |
From: "Alan Scott" <balanscott@...>
select * from cardetail_carseries where description containing "sedan"
The CONTAINING clause is not case-sensitive and it will find the occurance
anywhere in the string.
HTH
Woody
> We have an automotive database in Interbase and I need to return all theUse the CONTAINING keyword:
> records from a table where SEDAN was anywhere in the description field.
>
> I tried:
> select * from cardetail_carseries where description like '%SEDAN%'
>
> it errored. How would I do this...
> Thanks...
select * from cardetail_carseries where description containing "sedan"
The CONTAINING clause is not case-sensitive and it will find the occurance
anywhere in the string.
HTH
Woody