When you say it doesn't work, do you get an error or no
results? The following works when I tested it:
select *
from Sentences
where Sentence like '%?%'
--Sue
On Thu, 7 Aug 2003 11:02:19 +0800, "fishberry"
[quoted text, click to view] <treesy@hostran.com.cn> wrote:
>I have a table(sentences) which has two columns:
>Indexnumber,Sentence.Sentence column contains a lot of English sentences. I
>want to select all sentences which contain question mark.
>I use sql:
>select *
>from sentences
>where sentence Like "%?%"
>But it doesn't work.
>
>
I have a table(sentences) which has two columns:
Indexnumber,Sentence.Sentence column contains a lot of English sentences. I
want to select all sentences which contain question mark.
I use sql:
select *
from sentences
where sentence Like "%?%"
But it doesn't work.