Hi,
THis is a very basic question, but I can't remember how to write the statement for MySQL.
I'd like to query my MySQL database, table XYZ, and retrieve all records with id = 1, 20, 15, 7, and 3. In psuedo-code it might look like:
select * from XYZ where id = [1,20,15,7,3]
What would this query look like for a MySQL database?
Thanks
-R