我在access中建立条件查询,列的名称是DT 为日期 时间的格式(2007-04-25 10:11:11)在条件中怎么设置,才能让查询中只显示当天的数据
我在access中建立条件查询,列的名称是DT 为日期 时间的格式(2007-04-25 10:11:11)在条件中怎么设置,才能让查询中只显示当天的数据(对时间没有任何要求)
------解决方案--------------------select * from tt where format(dt, 'yyyy-mm-dd ')=format(now(), 'yyyy-mm-dd ')
------解决方案--------------------or
SELECT *
FROM tt
where format(dt, 'yyyy-mm-dd ')=date()
------解决方案--------------------select *
from 表名
where datediff( "d ",日期字段名,date())=0