<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 将秒转换为小时:分钟:秒

        Oracle Convert Seconds to Hours:Minutes:Seconds(Oracle 将秒转换为小时:分钟:秒)

        <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 将秒转换为小时:分钟:秒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?(如何将 DBMS_OUTPUT.PUT_LINE 的输出重定向到文件?)
                  How do I get column datatype in Oracle with PL-SQL with low privileges?(如何使用低权限的 PL-SQL 在 Oracle 中获取列数据类型?)
                  Get a list of all functions and procedures in an Oracle database(获取 Oracle 数据库中所有函数和过程的列表)
                  Why cannot I create triggers on objects owned by SYS?(为什么我不能在 SYS 拥有的对象上创建触发器?)
                  Returning result even for elements in IN list that don#39;t exist in table(即使对于表中不存在的 IN 列表中的元素也返回结果)
                  Reset Sequence in oracle 11g(oracle 11g 中的重置序列)
                  <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>
                    • <legend id='bQ0Or'><style id='bQ0Or'><dir id='bQ0Or'><q id='bQ0Or'></q></dir></style></legend>
                    • <small id='bQ0Or'></small><noframes id='bQ0Or'>

                          <tbody id='bQ0Or'></tbody>