I want to do this select, but always return NULL:
SELECT * FROM world.country c WHERE c.LifeExpectancy IN (45.2,46.2)
When I do separate selects, works fine:
select * from world.country c where c.LifeExpectancy IN (45.2)
select * from world.country c where c.LifeExpectancy IN (46.2)
Anyone know what is going on here?