php - mysql WHERE clause not working -


i select multiple values in clause not selecting anything.

this select query have:

'select * table  id in (4, 5)  order id desc' 

what missing?

i imagine table has no data id = 4 or id = 5.

try

 select * table  id = 4  

does return either? bet no.


Comments