I need to select multiple records
I use
SELECT * FROM `table` WHERE `ID` =5623 OR `ID` =5625 OR `ID` =5628 OR `ID` =5621
this
SELECT * FROM `table` where ID in (5263, 5625, 5628, 5621)
is probably better, but not faster.