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.
如何选择我的运行时列(默认为秒)以 HH:Mi 格式显示时间,例如 106680 秒 = 29:38。默认情况下,HH24:Mi 将超过 24 小时的时间换行。
像这样的东西怎么样:
Select to_char(TRUNC(runtimeCol/3600),'09') || ':' || to_char(TRUNC(MOD(runtimeCol,3600)/60),'09') from yourTable