Re: where clause query

2004-04-05 Thread Jigal van Hemert
> does MySQL have an equilivent for the WHERE Unique_id IN ('1',' 2', '3') as > used in oracle. MySQL supports this syntax exactly. See http://www.mysql.com/doc/en/Comparison_Operators.html (halfway the page) Regards, Jigal. -- MySQL General Mailing List For list archives: http://lists.mysql.

Re: where clause query

2004-04-05 Thread Richard Davey
Hello joe, Monday, April 5, 2004, 3:17:27 PM, you wrote: jc> does MySQL have an equilivent for the WHERE Unique_id IN ('1',' 2', '3') as jc> used in oracle. Yes. -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html -- MySQL General Mailing List For list archives: htt

where clause query

2004-04-05 Thread joe collins
does MySQL have an equilivent for the WHERE Unique_id IN ('1',' 2', '3') as used in oracle. select * from tableX where tableX_id IN ('1', '2', '3') i.e. if I have a comma delimited list of values for a certain field on a table...I can search for all records that have the values in my comma delim