Oracle SQL:timestamp in where子句

前端之家收集整理的这篇文章主要介绍了Oracle SQL:timestamp in where子句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要查找落在特定时间范围内的行。
select * 
from TableA 
where startdate >= '12-01-2012 21:24:00' 
  and startdate <= '12-01-2012 21:25:33'

即查找时间戳精度为秒的行,我该如何实现?

您需要使用to_timestamp()将您的字符串转换为适当的时间戳值:
to_timestamp('12-01-2012 21:24:00','dd-mm-yyyy hh24:mi:ss')

如果您的列类型为DATE(也支持秒),则需要使用to_date()

to_date('12-01-2012 21:24:00','dd-mm-yyyy hh24:mi:ss')

要将其转化为某个条件,请使用以下内容

select * 
from TableA 
where startdate >= to_timestamp('12-01-2012 21:24:00','dd-mm-yyyy hh24:mi:ss')
  and startdate <= to_timestamp('12-01-2012 21:25:33','dd-mm-yyyy hh24:mi:ss')

您不需要在“timestamp”类型的列上使用to_timestamp()

编辑纠正错字

原文链接:https://www.f2er.com/oracle/206327.html

猜你在找的Oracle相关文章