Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,
如何将列 time_code 值“201834”转换为 oracle sql 中的时间?在网上查找并使用 to_date、cast、convert 玩弄它并没有找到太多帮助。
谢谢。
我猜你有 HourMinuteSecond 格式并且你想将它转换为 DATE 类型。to_date 可以解决问题。
select to_date(time_code, 'HH24MISS') from table;
您可以将其作为 DATE 存储在数据库中。(不要担心 DATE 部分 - 使用当前日期,只需确保在显示时将其丢弃)