2

このクエリがあります

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)"

ご協力ありがとうございました。

4

1 に答える 1

1
select count(*) from sl_list 
where type = 'pantry'
and date(create_dtime) <> date(mod_dtime)
于 2012-11-30T00:51:32.613 に答える