TO_DSINTERVAL用法:進行天,小時,分秒的計算
TO_DSINTERVAL的用法:
有了這個函式,可以進行時間的計算,包括天,時,分,秒的計算。
oracle reference:
In the SQL format, days is an integer between 0 and 999999999, hours is an integer between 0 and 23, and minutes and seconds are integers between 0 and 59. frac_secs is the fractional part(小數部分) of seconds between .0 and .999999999. One or more blanks separate days from hours. Additional blanks are allowed between format elements.
Examples:
The following example uses the SQL format to select from the hr.employees table the employees who had worked for the company for at least 100 days on November 1, 2002:
有了這個函式,可以進行時間的計算,包括天,時,分,秒的計算。
oracle reference:
In the SQL format, days is an integer between 0 and 999999999, hours is an integer between 0 and 23, and minutes and seconds are integers between 0 and 59. frac_secs is the fractional part(小數部分) of seconds between .0 and .999999999. One or more blanks separate days from hours. Additional blanks are allowed between format elements.
Examples:
The following example uses the SQL format to select from the hr.employees table the employees who had worked for the company for at least 100 days on November 1, 2002:
SELECT employee_id, last_name FROM employees WHERE hire_date + TO_DSINTERVAL('100 00:00:00') <= DATE '2002-11-01' ORDER BY employee_id; EMPLOYEE_ID LAST_NAME ----------- --------------- 102 De Haan 203 Mavris 204 Baer 205 Higgins 206 Giet
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29196873/viewspace-1065389/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle計算兩個日期的時間差時分秒Oracle
- 用Spark進行實時流計算Spark
- 計算兩個日期相差的天數,Calendar用法
- wxPython使用delayedresult進行耗時計算Python
- 去掉時間字串的時分秒字串
- 實時計算小括
- js計算兩個日期相差的天數(不包含小時分鐘秒)JS
- jquery比較時間 的時分秒大小jQuery
- py 計算去年,明年,多少天前的時間
- 使用pytz模組進行時區轉換及時間計算
- 如何計算兩個時間間隔的天數
- javascript計算兩個時間日期相差的天數JavaScript
- JavaScript 天小時分鐘和秒倒數計時JavaScript
- 帶時分秒的JS日曆控JS
- JavaScript 計算兩個時間相差天數JavaScript
- js 年月日時分秒JS
- Windows XP 進入 50 天倒數計時Windows
- 計算SQL執行時間SQL
- laydate設定預設時分秒
- OpenCV使用ParallelLoopBody進行平行計算OpenCVParallelOOP
- 在vim中使用bc進行算術計算
- 計算php程式執行時間的程式PHP
- 原生js實現的天小時分鐘和秒倒數計時效果JS
- AppBox升級進行時 - Any與All的用法(Entity Framework)APPFramework
- Python秒轉換成時間(時分秒)Python
- Dynamics CRM使用計算欄位自動計算兩個時間欄位的天數差
- 計算機計算小數除法的陷阱計算機
- 2019年進行時,實時分析雲端計算的過去、現在和未來
- sql server 計算兩個時間 相差的 幾天幾時幾分幾秒SQLServer
- js將秒轉換為時分秒JS
- 使用console進行效能測試和計算程式碼執行時間
- Linux計算一天前的日期,一個小時前的時間等Linux
- ORACLE計算2個時間段相差時間小時、分、秒Oracle
- Date型別使用Calendar進行時間運算型別
- 根據時間經緯度高程計算天頂角
- Android 時鐘(由秒轉變為時分秒)Android
- iOS動畫:帶時分秒指標的時鐘動畫(上)iOS動畫指標
- 把時間戳之差轉換成時分秒格式時間戳