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.
我希望你能帮帮我:
我有字符串: 2013-05-01T00:01:00Z ,我相信它是 ISODate 格式。我想将其转换为时间戳。有人知道怎么做这个吗?
我正在使用 SAP HANA ,但可以使用 oracle dbs 建立一些链接!谢谢。
你可以试试:
SELECT TO_TIMESTAMP ('2010-01-11 13:30:00', 'YYYY-MM-DD HH24:MI:SS') "to timestamp" FROM DUMMY;