これはどうですか?
select cast(col as timestamp(0))
編集:
丸めを回避する最も簡単な方法は、trunc()
を使用することです。 または0.5秒を引く:
select cast(col - 0.5/(24*60*60) as timestamp(0))
これはどうですか?
select cast(col as timestamp(0))
編集:
丸めを回避する最も簡単な方法は、trunc()
を使用することです。 または0.5秒を引く:
select cast(col - 0.5/(24*60*60) as timestamp(0))