kalin mintchev wrote:
 hi all...

 how can i do a query on a list of ids without doing individual queries
for each one of them?

 something like:
 select id,title from content where id = 100,106,109;

select id,title from content where id IN(10,20,30);


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

Reply via email to