Paul,
Do you mean something like this?
SELECT * FROM mytable WHERE mytable.column LIKE "*searchstring*";
or using the position function...
SELECT * FROM mytable WHERE POSITION(mytable.column, "searchstring") > 0;
Phillip B.
-----Original Message-----
From: Paul Libbrecht <paul@ags.uni-sb.de>
>Hi all,
>
>Sorry for this fairly off-topic question... I couldn't figure out how
>to remember or get a pointer to a select query that would select all
>rows where a column contained a string (a like-it string).
>
>If anyone has two minutes and a pointer... that would be appreciated.
>
>Thanks.
>
>Paul
-----------------------------------------------------------------------------
To unsubscribe from this mailing list, send email to majordomo@enhydra.org
with the text "unsubscribe instantdb" in the body of the email.
If you have other questions regarding this mailing list, send email to
the list admin at owner-instantdb@enhydra.org.
|