In QuestDb can someone explain, whats the difference between
SELECT avg(rating) FROM ratings where
timestamp in('2005-01-01T00:00:00Z', '2006-01-01T00:00:00Z')
and
SELECT avg(rating) FROM ratings where
timestamp = '2005;1y'
and
SELECT avg(rating) FROM ratings where
timestamp = '2005'
because the first select and the last one are equal while the second results differently on my data