select * from 表 where 时间 between #2000-01-01# and #2000-01-02#
类似于这样
最好用CONVERT 或者CAST 函数转换为字符串函数然后再查询
例如查询具体某日的数据就用where条件为where convert()
select * from 表 where 时间 between '2000-01-01 00:00:00' and '2000-01-02 00:00:00'
select * from 表 where 时间 < '2000-01-01 '
日期时间型,这个类型我几乎没有用到