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

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

      如何在oracle时间戳中添加第二个

      时间:2023-06-24

          <bdo id='HUHgf'></bdo><ul id='HUHgf'></ul>

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

              <legend id='HUHgf'><style id='HUHgf'><dir id='HUHgf'><q id='HUHgf'></q></dir></style></legend><tfoot id='HUHgf'></tfoot>

                <tbody id='HUHgf'></tbody>

              1. 本文介绍了如何在oracle时间戳中添加第二个的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何在 Oracle 中添加带有时间戳值的秒数.我试过这个......

                How can I add seconds with timestamp value in Oracle. I tried this ....

                SELECT CURRENT_TIMESTAMP , CURRENT_TIMESTAMP+200 AS addedTime FROM dual
                

                但是通过这个我得到了这个

                But by this I am getting this

                2018-06-04 19:03:01 => 2018-12-21 19:03:01(添加 200 后)

                2018-06-04 19:03:01 => 2018-12-21 19:03:01 (after adding 200)

                如您所见,日期正在添加,但我只想添加第二个...

                As you can see date is getting added , but I want to add second only...

                此 SQL 在 DB2 中正常运行,任何人都可以向我建议在 Oracle 中任何合适的替代方案.

                This SQL running properly in DB2 , can any one suggest me any suitable alternative in Oracle.

                推荐答案

                你总是可以使用分数(for Oracle 1 = 1 day):

                You could always use fraction(for Oracle 1 = 1 day):

                SELECT CURRENT_TIMESTAMP ,
                       CURRENT_TIMESTAMP + 200 *(1/24/60/60) AS addedTime 
                FROM dual;
                <=>
                SELECT CURRENT_TIMESTAMP + 200/86400 FROM dual
                

                DBFiddle 演示

                或:

                SELECT CURRENT_TIMESTAMP + INTERVAL '200' SECOND FROM dual
                

                这篇关于如何在oracle时间戳中添加第二个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:调整 RDS 上的默认时区设置 下一篇:Amazon RDS 与带有 MySQL 的 EC2 的各自优势/限制是什么?

                相关文章

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

                    <bdo id='pNx8x'></bdo><ul id='pNx8x'></ul>

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