Access日期时间查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Access日期时间查询相关的知识,希望对你有一定的参考价值。
Access日期时间条件查询
如果字段的数据类型是Date/Time类型,使用普通的方式无法查询精确到时分秒的数据,解决方案如下:
精确到日期:
select * from user where userId = 26 and createTime > #2018/1/25#
精确到时分秒(错误方式):
select * from user where userId = 26 and createTime = #"2018/1/25 8:23:42"#
精确到时分秒(正确方式):
select * from user where userId = 26 and createTime = cdate("2018/1/25 8:23:42");
以上是关于Access日期时间查询的主要内容,如果未能解决你的问题,请参考以下文章
使用带有日期的 C# 在 MS Access 97 数据库中清除查询