このクエリがあります
select count(*) from sl_list
where type = 'pantry'
次のような何千もの行を返します。
uuid type create_dtime mod_dtime
124234525 pantry 2012-06-13 15:25:58 2012-06-13 15:27:51
次のように別の where 句が存在するように、クエリを調整したいと思います。
select count(*) from sl_list
where type = 'pantry'
and "if create_dtime and mod_dtime are not the same day (i dont care about hours)"
ご協力ありがとうございました。