<i id='gcP9Q'><tr id='gcP9Q'><dt id='gcP9Q'><q id='gcP9Q'><span id='gcP9Q'><b id='gcP9Q'><form id='gcP9Q'><ins id='gcP9Q'></ins><ul id='gcP9Q'></ul><sub id='gcP9Q'></sub></form><legend id='gcP9Q'></legend><bdo id='gcP9Q'><pre id='gcP9Q'><center id='gcP9Q'></center></pre></bdo></b><th id='gcP9Q'></th></span></q></dt></tr></i><div id='gcP9Q'><tfoot id='gcP9Q'></tfoot><dl id='gcP9Q'><fieldset id='gcP9Q'></fieldset></dl></div>
    <bdo id='gcP9Q'></bdo><ul id='gcP9Q'></ul>

<small id='gcP9Q'></small><noframes id='gcP9Q'>

    <tfoot id='gcP9Q'></tfoot>

        <legend id='gcP9Q'><style id='gcP9Q'><dir id='gcP9Q'><q id='gcP9Q'></q></dir></style></legend>

      1. Oracle 将秒转换为小时:分钟:秒

        时间:2023-11-02

        <legend id='4gnrK'><style id='4gnrK'><dir id='4gnrK'><q id='4gnrK'></q></dir></style></legend>
          • <bdo id='4gnrK'></bdo><ul id='4gnrK'></ul>
                <tbody id='4gnrK'></tbody>

              <small id='4gnrK'></small><noframes id='4gnrK'>

              <tfoot id='4gnrK'></tfoot>
              <i id='4gnrK'><tr id='4gnrK'><dt id='4gnrK'><q id='4gnrK'><span id='4gnrK'><b id='4gnrK'><form id='4gnrK'><ins id='4gnrK'></ins><ul id='4gnrK'></ul><sub id='4gnrK'></sub></form><legend id='4gnrK'></legend><bdo id='4gnrK'><pre id='4gnrK'><center id='4gnrK'></center></pre></bdo></b><th id='4gnrK'></th></span></q></dt></tr></i><div id='4gnrK'><tfoot id='4gnrK'></tfoot><dl id='4gnrK'><fieldset id='4gnrK'></fieldset></dl></div>

                  本文介绍了Oracle 将秒转换为小时:分钟:秒的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要从给定的总秒数值中以小时:分钟:秒格式显示用户可用时间.如果您知道一个 ORACLE 函数来做同样的事情,请感谢.我正在使用 Oracle.

                  I have a requirement to display user available time in Hours:Minutes:Seconds format from a given total number of seconds value. Appreciate if you know a ORACLE function to do the same. I'm using Oracle.

                  感谢您的宝贵时间.

                  推荐答案

                  如果您只是想将给定的秒数转换为 HH:MI:SS 格式,应该这样做

                  If you're just looking to convert a given number of seconds into HH:MI:SS format, this should do it

                  SELECT 
                      TO_CHAR(TRUNC(x/3600),'FM9900') || ':' ||
                      TO_CHAR(TRUNC(MOD(x,3600)/60),'FM00') || ':' ||
                      TO_CHAR(MOD(x,60),'FM00')
                  FROM DUAL
                  

                  其中 x 是秒数.

                  这篇关于Oracle 将秒转换为小时:分钟:秒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Oracle PL/SQL 的单元测试框架? 下一篇:Oracle 中的显式游标和隐式游标有什么区别?

                  相关文章

                  <tfoot id='bQ0Or'></tfoot>
                    <i id='bQ0Or'><tr id='bQ0Or'><dt id='bQ0Or'><q id='bQ0Or'><span id='bQ0Or'><b id='bQ0Or'><form id='bQ0Or'><ins id='bQ0Or'></ins><ul id='bQ0Or'></ul><sub id='bQ0Or'></sub></form><legend id='bQ0Or'></legend><bdo id='bQ0Or'><pre id='bQ0Or'><center id='bQ0Or'></center></pre></bdo></b><th id='bQ0Or'></th></span></q></dt></tr></i><div id='bQ0Or'><tfoot id='bQ0Or'></tfoot><dl id='bQ0Or'><fieldset id='bQ0Or'></fieldset></dl></div>
                    • <bdo id='bQ0Or'></bdo><ul id='bQ0Or'></ul>
                  1. <legend id='bQ0Or'><style id='bQ0Or'><dir id='bQ0Or'><q id='bQ0Or'></q></dir></style></legend>
                  2. <small id='bQ0Or'></small><noframes id='bQ0Or'>