Hi,

I can do:

where word in('one','two','three')

and I can also do:

where word like 'thr%'

Is there a way of combining these 2 ways?

I want to select something like:

where word like 'on%' or word like 'tw%' or word like 'thr%'

but using a single expression, without "or".

Is it possible to do this? To use something like

where word inlike('on%','tw%','thr%')

Thank you.

Octavian


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to