oracle的dateformat,Oracle - Date Format

本文详细解释了在Oracle数据库中尝试将特定字符串转换为日期时出现的ORA-01830错误的原因,并提供了正确的TO_DATE及TO_TIMESTAMP函数用法。此外,还介绍了如何根据实际需求选择合适的函数来避免类似的错误。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

This query

select TO_DATE('20150731 00:00:34.550','YYYYMMDD')

from dual

leads to error

ORA-01830: date format picture ends before converting entire input string

because you pass string with length 22 characters, but at the same time you pass date format with 8 characters, which obviously doesn't correspond to string. You should write the query as

select to_timestamp('20150731 00:00:34.550','yyyymmdd hh24:mi:ss.ff3')

from dual

As for your table, since you have varchar2 column with dates, you have to take care about table content. Query requires exect matching of the source string and date format.

If you want to show only date without time and you don't need to process this string as date, you can make just

select substr('20150731 00:00:34.550', 1, 8)

from dual

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
OSZAR »