我尝试To_Timestamp
了 SQL Developer 的其他方法,但只有这一种对我有用。
Select To_Number(To_Char(DateTime_FieldName, 'HH24'))
|| ':' || to_number(to_char(DateTime_FieldName, 'MI'))
|| ':' ||to_number(to_char(DateTime_FieldName, 'SS'))
from TABLE_NAME
有没有更好的解决方案?