表名:A
時(shí)間字段:ddatetime(datetime類型)
查詢2003-2004年6月7日-7月8日數(shù)據(jù)。
select * from A where (
extract(year from ddatetime) between 2003 and 2004)
and (
extract(month from ddatetime) between 6 and 7)
and (
extract(day from ddatetime) between 6 and 7)
extract只能取到日。小時(shí),或者到秒,需要to_char。
查詢2003-2004年6月7日-7月8日12時(shí)到20時(shí)數(shù)據(jù)。
select * from A where (extract(year from ddatetime) between 2003 and 2004)
and (extract(month from ddatetime) between 6 and 7)
and (extract(day from ddatetime) between 6 and 7) and (to_char(ddatetime,'HH24') between 12 and 20)
以上查詢在oracle可運(yùn)行。
posted on 2009-01-22 22:21
長春語林科技 閱讀(1286)
評論(0) 編輯 收藏 所屬分類:
oracle