Multiple OR Clauses in MySQL

Posted by Grant on Stack Overflow See other posts from Stack Overflow or by Grant
Published on 2010-06-13T02:54:14Z Indexed on 2010/06/13 3:02 UTC
Read the original article Hit count: 218

Filed under:
|

I'm trying to grab content where id = 3 OR id = 9 OR id = 100... Keep in mind, I can have a few hundred of these ids.

What is the most efficient way to write my query?

$sql = "SELECT name FROM artists WHERE (id=3 OR id=9 OR .... id-100)"

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql