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.
select to_timestamp(trunc(state_date) || ' ' || substr(state_time,1,12),'DD-MM-YYYY HH24:MI:SS:FF3') from state_log
上面的语句给出错误
带有 uk nls 参数的“日期格式图片在转换整个输入字符串之前结束”。它适用于美国 nls 参数。
请告知我该如何解决这个问题。
问候,
柴土
正如你所说,你的 state_date 是 DD-MON-YY 然后使用
select to_timestamp(trunc(state_date) || ' ' || substr(state_time,1,12),'DD-MON-YYYY HH24:MI:SS:FF3') from state_log