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

      <legend id='57Pqc'><style id='57Pqc'><dir id='57Pqc'><q id='57Pqc'></q></dir></style></legend>

      <small id='57Pqc'></small><noframes id='57Pqc'>

    1. oracle systimestamp (sysdate) 到毫秒

      时间:2023-10-26

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

              • 本文介绍了oracle systimestamp (sysdate) 到毫秒的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                您能否提供存储函数的实现以获取当前 systimestamp 以毫秒为单位.
                我可以使用的东西

                从dual中选择current_time_ms;

                并获取当前时间与 UTC 1970 年 1 月 1 日午夜之间的差值(以毫秒为单位).

                谢谢.

                解决方案

                • 数据库时区不可知
                • 以毫秒为单位
                • 在 XE 中工作
                <前>函数 current_time_ms退货号码是out_result 数;开始选择提取(天从(sys_extract_utc(systimestamp)-to_timestamp('1970-01-01','YYYY-MM-DD')))* 86400000+ to_number(to_char(sys_extract_utc(systimestamp), 'SSSSSFF3'))进入 out_result从双重;返回输出结果;结束 current_time_ms;

                Could you provide implementation of stored function to get current systimestamp as milliseconds.
                Something I can use like

                select current_time_ms from dual;
                

                and get the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.

                Thanks.

                解决方案

                • DB timezone agnostic
                • with milliseconds
                • works in XE

                    function current_time_ms
                        return number
                    is
                        out_result number;
                    begin
                        select extract(day from(sys_extract_utc(systimestamp) - to_timestamp('1970-01-01', 'YYYY-MM-DD'))) * 86400000 
                            + to_number(to_char(sys_extract_utc(systimestamp), 'SSSSSFF3'))
                        into out_result
                        from dual;
                        return out_result;
                    end current_time_ms;
                

                这篇关于oracle systimestamp (sysdate) 到毫秒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:mysql 存储过程比标准查询慢 20 倍 下一篇:是否可以使用“返回"?在存储过程中?

                相关文章

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

                  <bdo id='XXcoH'></bdo><ul id='XXcoH'></ul>
                <tfoot id='XXcoH'></tfoot><legend id='XXcoH'><style id='XXcoH'><dir id='XXcoH'><q id='XXcoH'></q></dir></style></legend>
                1. <small id='XXcoH'></small><noframes id='XXcoH'>