S
Sharp
Hi
Consider the following field FOO containing data of type 'text'.
FOO
aaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbb
aaaaaaaacccaaaaaaa
aaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbb
I would like to extract rows containing the substring "ccc".
I expect the following result:
aaaaaaaacccaaaaaaa
What I have tried that did not work:
WHERE Foo LIKE '%ccc';
Any help appreciated.
Cheers
Michael
Consider the following field FOO containing data of type 'text'.
FOO
aaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbb
aaaaaaaacccaaaaaaa
aaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbb
I would like to extract rows containing the substring "ccc".
I expect the following result:
aaaaaaaacccaaaaaaa
What I have tried that did not work:
WHERE Foo LIKE '%ccc';
Any help appreciated.
Cheers
Michael