怎样查询datetime字段里的数据
我用的是Oracle数据库,现要在PB里用ISQL查询表salehead中的数据,以表salehead中的saledate字段(数据类型是datetime)为条件查询销售数据,应如何做。
我试了以下几种方法都不行,我的目的是查询5月1日上午9点至10点的销售。
其一:
select * from salehead
where saledate>='2006-5-1 09:00:00' and saledate<='2006-5-1- 09:59:59';
其二:
select * from salehead
where saledate between 2006-5-1 09:00:00 and 2006-5-1 09:5959;