{"id":14941,"date":"2020-02-11T10:44:44","date_gmt":"2020-02-11T10:44:44","guid":{"rendered":"https:\/\/dbtut.com\/?p=14941"},"modified":"2021-02-05T23:16:04","modified_gmt":"2021-02-05T23:16:04","slug":"oracle-date-functions","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/","title":{"rendered":"Oracle Date Functions"},"content":{"rendered":"<p>This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.<\/p>\n<h2>Oracle Date Functions<\/h2>\n<p>Oracle has several functions to operate on date and time data.<\/p>\n<h3>ADD_MONTHS Function in Oracle<\/h3>\n<p>Adds specified number of months to the specified date value.<\/p>\n<pre class=\"lang:default decode:true \">SELECT ADD_MONTHS(15-Jan-19', 4) AS RESULT FROM DUAL;\r\nResult: '15-May-19'<\/pre>\n<h3>CURRENT_DATE Function in Oracle<\/h3>\n<p>Returns the date information of the current session. If you change the time zone the result will change.<\/p>\n<pre class=\"lang:default decode:true\">SELECT CURRENT_DATE AS Result FROM DUAL;\r\nResult: 01\/01\/2020 01:00:00 AM\r\n\r\n--Here we are changing time zone 0 to 3\r\nALTER SESSION SET TIME_ZONE = '3:0';\r\n\r\nSELECT CURRENT_DATE AS Result FROM DUAL; \r\nResult: 01\/01\/2020 04:00:00 AM\r\n<\/pre>\n<h3>CURRENT_TIMESTAMP Function in Oracle<\/h3>\n<p>Returns the date and time information of the current session. If you change the time zone the result will change.<\/p>\n<pre class=\"lang:default decode:true\">SELECT CURRENT_DATE AS Result FROM DUAL;\r\nResult:1-JAN-20 01.01.01.123456 PM 00:00\r\n\r\n--Here we are changing time zone 0 to 3 \r\nALTER SESSION SET TIME_ZONE = '3:0'; \r\n\r\nSELECT CURRENT_DATE AS Result FROM DUAL;\r\nResult:1-JAN-20 04.01.01.123456 PM 00:00\r\n<\/pre>\n<h3>LOCALTIMESTAMP Function in Oracle<\/h3>\n<p>Its similar with CURRENT_TIMESTAMP Function. The difference is that the LOCALTIMESTAMP function returns a TIMESTAMP value but CURRENT_TIMESTAMP function returns a TIMESTAMP WITH TIME ZONE.<\/p>\n<h3>DBTIMEZONE Function in Oracle<\/h3>\n<p>Returns the timezone information of the database server. If you change the time zone of the database server, the result will change.<\/p>\n<pre class=\"lang:default decode:true\">SELECT DBTIMEZONE AS RESULT FROM DUAL;\r\nPossible Result: +00:00-&gt; this may change according to your database server's timezone.<\/pre>\n<h3>SYSDATE Function in Oracle<\/h3>\n<p>Returns the current system date and time information of your local server where the database resides..<\/p>\n<pre class=\"lang:default decode:true\">SELECT SYSDATE AS RESULT FROM DUAL;<\/pre>\n<h3>SYSTIMESTAMP Function in Oracle<\/h3>\n<p>Returns the current system date and time information. It includes fractional seconds and time zone information of your local server where the database resides.<\/p>\n<pre class=\"lang:default decode:true\">SELECT SYSTIMESTAMP AS RESULT FROM DUAL;<\/pre>\n<h3>EXTRACT Function in Oracle<\/h3>\n<p>It extracts the parts such as year, month, day and hour from date\/time information.<\/p>\n<pre class=\"lang:default decode:true\">SELECT EXTRACT(YEAR FROM DATE '2020-01-15')\r\nResult: 2020\r\n\r\nSELECT EXTRACT(MONTH FROM DATE '2020-01-15')\r\nResult: 1\r\n\r\nSELECT EXTRACT(DAY FROM DATE '2020-01-15')\r\nResult: 15<\/pre>\n<h3>LAST_DAY Function in Oracle<\/h3>\n<p>Returns the last day of the specified month.<\/p>\n<pre class=\"lang:default decode:true\">SELECT LAST_DAY('15-JAN-20') AS RESULT FROM DUAL;\r\nResult: '31-JAN-20'<\/pre>\n<h3>MONTHS_BETWEEN Function in Oracle<\/h3>\n<p>Returns the number of month between specified to to date.<\/p>\n<pre class=\"lang:default decode:true \">SELECT MONTHS_BETWEEN(TO_DATE('01-15-2020','MM-DD-YYYY'),\r\nTO_DATE('02-15-2020','MM-DD-YYYY') ) FROM DUAL; \r\nResult:-1 \r\n\r\nSELECT MONTHS_BETWEEN(TO_DATE('02-15-2020','MM-DD-YYYY'),\r\nTO_DATE('01-15-2020','MM-DD-YYYY') ) FROM DUAL; \r\nResult:1<\/pre>\n<h3>NEW_TIME Function in Oracle<\/h3>\n<p>Converts the timezone of the date.<\/p>\n<pre class=\"lang:default decode:true \">SELECT NEW_TIME(TO_DATE('01-01-2020 01:00:00', \r\n'MM-DD-YY HH24:MI:SS'),'AST', 'ADT') \"New Timezone\" FROM DUAL;<\/pre>\n<p>You can find timezones in the below table.<\/p>\n<div>\n<table style=\"height: 100%; width: 100%;\" border=\"1\">\n<tbody>\n<tr style=\"height: 21px;\">\n<th>Timezone Value<\/th>\n<th>TimeZone Description<\/th>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>AST<\/td>\n<td>Atlantic Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>ADT<\/td>\n<td>Atlantic Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>BST<\/td>\n<td>Bering Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>BDT<\/td>\n<td>Bering Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>CST<\/td>\n<td>Central Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>CDT<\/td>\n<td>Central Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>EST<\/td>\n<td>Eastern Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>EDT<\/td>\n<td>Eastern Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>GMT<\/td>\n<td>Greenwich Mean Time<\/td>\n<\/tr>\n<tr style=\"height: 45px;\">\n<td>HST<\/td>\n<td>Alaska-Hawaii Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 45px;\">\n<td>HDT<\/td>\n<td>Alaska-Hawaii Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>MST<\/td>\n<td>Mountain Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>MDT<\/td>\n<td>Mountain Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 45px;\">\n<td>NST<\/td>\n<td>Newfoundland Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>PST<\/td>\n<td>Pacific Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>PDT<\/td>\n<td>Pacific Daylight Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>YST<\/td>\n<td>Yukon Standard Time<\/td>\n<\/tr>\n<tr style=\"height: 21px;\">\n<td>YDT<\/td>\n<td>Yukon Daylight Time<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>NEXT_DAY Function in Oracle<\/h3>\n<p>Returns the first weekday after the specified date.<\/p>\n<pre class=\"lang:default decode:true\">SELECT NEXT_DAY('23-Jan-20', 'TUESDAY') FROM DUAL;\r\nResult: '28-Jan-20'\r\n\r\nSELECT NEXT_DAY('14-Feb-20', 'THURSDAY') FROM DUAL;\r\nResult: '20-Feb-20'<\/pre>\n<h3>Round Function with dates in Oracle<\/h3>\n<p>It rounds the date to new value(new month, new year) according to the second parameter.<\/p>\n<pre class=\"lang:default decode:true\">SELECT ROUND(TO_DATE ('15-JAN-2020'),'MONTH') \"New Month\",\r\nROUND(TO_DATE ('15-JAN-2020'),'YEAR') \"New Year\" FROM DUAL;\r\nNew Month      New Year\r\n------------  ------------\r\n01-FEB-2020   01-JAN-2021<\/pre>\n<div style=\"direction: ltr;\">\n<table style=\"height: 100%; width: 100%; direction: ltr; border-collapse: collapse; border: 1pt solid #a3a3a3;\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\"><strong>Round Parameters<\/strong><\/td>\n<td style=\"height: 55px;\"><strong>Valid formats<\/strong><\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">Year<\/td>\n<td style=\"height: 55px;\">SYYYY, YYYY, YEAR, SYEAR, YYY, YY, Y<\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">ISO Year<\/td>\n<td style=\"height: 55px;\">IYYY, IY, I<\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">Quarter<\/td>\n<td style=\"height: 55px;\">Q<\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">Month<\/td>\n<td style=\"height: 55px;\">MONTH, MON, MM, RM<\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">Week<\/td>\n<td style=\"height: 55px;\">WW<\/td>\n<\/tr>\n<tr style=\"height: 55px;\">\n<td style=\"height: 55px;\">IW<\/td>\n<td style=\"height: 55px;\">IW<\/td>\n<\/tr>\n<tr style=\"height: 23px;\">\n<td style=\"height: 23px;\">W<\/td>\n<td style=\"height: 23px;\">W<\/td>\n<\/tr>\n<tr style=\"height: 23px;\">\n<td style=\"height: 23px;\">Day<\/td>\n<td style=\"height: 23px;\">DDD, DD, J<\/td>\n<\/tr>\n<tr style=\"height: 23px;\">\n<td style=\"height: 23px;\">Start day of the week<\/td>\n<td style=\"height: 23px;\">DAY, DY, D<\/td>\n<\/tr>\n<tr style=\"height: 23px;\">\n<td style=\"height: 23px;\">Hour<\/td>\n<td style=\"height: 23px;\">HH, HH12, HH24<\/td>\n<\/tr>\n<tr style=\"height: 95px;\">\n<td style=\"height: 95px;\">Minute<\/td>\n<td style=\"height: 95px;\">MI<\/p>\n<p id=\"FVsyPjJ\">\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>SESSIONTIMEZONE Function in Oracle<\/h3>\n<p>Returns current session&#8217;s time zone information.<\/p>\n<pre class=\"lang:default decode:true\">SELECT SESSIONTIMEZONE FROM DUAL;\r\nResult: +03:00-&gt;this is possible result. It changes according to the session's time zone.<\/pre>\n<h3>TRUNC Function with dates in Oracle<\/h3>\n<p>It truncs date according to the specified parameter. For example if you specify YEAR as paramater, it truncs the year of the date as seen below.<\/p>\n<pre class=\"lang:default decode:true\">SELECT TRUNC(TO_DATE('05-MAY-20'), 'YEAR') FROM DUAL;\r\nResult: '01-JAN-20'\r\n\r\nSELECT TRUNC(TO_DATE('05-MAY-20'), 'MONTH') FROM DUAL;\r\nResult: '01-MAY-20'<\/pre>\n<p>Other parameter you can use with Trunc function:<\/p>\n<table>\n<thead>\n<tr>\n<th>Trunc Parameters<\/th>\n<th>Valid formats<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Year<\/td>\n<td>SYYYY, YYYY, YEAR, SYEAR, YYY, YY, Y<\/td>\n<\/tr>\n<tr>\n<td>ISO Year<\/td>\n<td>IYYY, IY, I<\/td>\n<\/tr>\n<tr>\n<td>Quarter<\/td>\n<td>Q<\/td>\n<\/tr>\n<tr>\n<td>Month<\/td>\n<td>MONTH, MON, MM, RM<\/td>\n<\/tr>\n<tr>\n<td>Week<\/td>\n<td>WW<\/td>\n<\/tr>\n<tr>\n<td>IW<\/td>\n<td>IW<\/td>\n<\/tr>\n<tr>\n<td>W<\/td>\n<td>W<\/td>\n<\/tr>\n<tr>\n<td>Day<\/td>\n<td>DDD, DD, J<\/td>\n<\/tr>\n<tr>\n<td>Start day of the week<\/td>\n<td>DAY, DY, D<\/td>\n<\/tr>\n<tr>\n<td>Hour<\/td>\n<td>HH, HH12, HH24<\/td>\n<\/tr>\n<tr>\n<td>Minute<\/td>\n<td>MI<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>TZ_OFFSET Function in Oracle<\/h3>\n<p>Returns timezone offset information of a value.<\/p>\n<pre class=\"lang:default decode:true\">SELECT TZ_OFFSET('US\/Arizona') FROM DUAL;\r\nResult: '-07:00'\r\n\r\nSELECT TZ_OFFSET('-07:00') FROM DUAL;\r\nResult: '-07:00'\r\n\r\nSELECT TZ_OFFSET(sessiontimezone) FROM DUAL;\r\nResult: '+03:00'<\/pre>\n<\/div>\n<\/div>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14941\" class=\"pvc_stats all  \" data-element-id=\"14941\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This article contains information about oracle date functions such as sysdate, last_day, add_months, extract. Oracle Date Functions Oracle has several functions to operate on date and time data. ADD_MONTHS Function in Oracle Adds specified number of months to the specified date value. SELECT ADD_MONTHS(15-Jan-19&#8242;, 4) AS RESULT FROM DUAL; Result: &#8217;15-May-19&#8242; CURRENT_DATE Function in Oracle &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14941\" class=\"pvc_stats all  \" data-element-id=\"14941\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":485,"featured_media":14944,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[4797,8520,8547,8548,8546,8524,8522,8506,8516,8518,8526,8617,8630,8629,8636,8633,8634,8631,8632,8637,8614,8613,8621,8620,8615,8627,8616,8626,8623,8624,8619,8622,8625,8635,8609,8606,8612,8611,8610,8628,8552,8558,8549,8551,8550,8560,8556,8554,8561,8559,8569,8575,8572,8573,8574,8568,8545,8566,8570,8567,8571,8521,8543,8541,8544,8542,8525,8523,8507,8505,8588,8512,8533,8553,8557,8538,8539,8555,8508,8618,8537,8509,8529,8532,8591,8597,8565,8470,8598,8599,8596,8510,8563,8562,8515,8514,8536,8534,8594,8528,8564,8535,8582,8579,8580,8581,8578,8577,8576,8531,8530,8583,8513,8527,8540,8589,8604,8605,8584,8590,8608,8602,8603,8607,8517,8519,8585,8586,8587,8601,8593,8592,8595,8600,8511],"class_list":["post-14941","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle","tag-monitor-hint-in-oracle","tag-add_months-function-in-oracle","tag-current-date-function-in-oracle","tag-current-date-function-in-pl-sql","tag-current-timestamp-function-in-oracle","tag-current_date-function-in-oracle","tag-current_timestamp-function-in-oracle","tag-date-function-oracle-sql","tag-date-functions-in-oracle","tag-date-functions-in-plsql","tag-dbtimezone-function-in-oracle","tag-diff-between-sysdate-and-current_date-in-oracle","tag-difference-between-current_date-and-sysdate","tag-difference-between-current_date-and-sysdate-in-oracle","tag-difference-between-current_timestamp-and-date","tag-difference-between-current_timestamp-and-sysdate","tag-difference-between-current_timestamp-and-sysdate-in-oracle","tag-difference-between-current_timestamp-and-systimestamp","tag-difference-between-current_timestamp-and-systimestamp-in-oracle","tag-difference-between-dbtimezone-and-sessiontimezone","tag-difference-between-dbtimezone-and-sessiontimezone-in-oracle","tag-difference-between-dbtimezone-and-systimestamp","tag-difference-between-now-and-sysdate-function","tag-difference-between-now-and-sysdate-in-sql","tag-difference-between-sessiontimezone-and-dbtimezone","tag-difference-between-sysdate-and-curdate","tag-difference-between-sysdate-and-current_date-in-oracle","tag-difference-between-sysdate-and-current_date-in-sql","tag-difference-between-sysdate-and-current_timestamp-in-oracle","tag-difference-between-sysdate-and-date-in-oracle","tag-difference-between-sysdate-and-now","tag-difference-between-sysdate-and-timestamp-in-oracle","tag-difference-between-sysdate-and-truncsysdate-in-oracle","tag-difference-between-sysdatetime-and-current_timestamp","tag-difference-between-systimestamp-and-current_timestamp","tag-difference-between-systimestamp-and-current_timestamp-in-oracle","tag-difference-between-systimestamp-and-dbtimezone","tag-difference-between-systimestamp-and-sysdate","tag-difference-between-systimestamp-and-sysdate-in-oracle","tag-difference-current_date-sysdate","tag-extract-date-from-datetime-sql-oracle","tag-extract-day-from-date-in-oracle","tag-extract-function-in-oracle","tag-extract-function-in-oracle-for-date","tag-extract-function-in-oracle-sql","tag-extract-month-oracle-sql","tag-extract-year-from-date-plsql","tag-get-hour-from-datetime-oracle-sql","tag-get-year-from-date-in-oracle-pl-sql","tag-how-to-get-month-from-date-oracle","tag-last-day-function-in-oracle-with-example","tag-last-day-function-in-pl-sql","tag-last_day-function-in-oracle","tag-last_day-function-in-oracle-sql","tag-last_day-function-in-oracle-with-example","tag-last_day-function-in-oracle-with-examples","tag-localtimestamp-function-in-oracle","tag-next_day-function-in-oracle","tag-next_day-function-in-oracle-pl-sql","tag-next_day-function-in-oracle-with-examples","tag-next_day-function-in-pl-sql","tag-oracle-add_months-function","tag-oracle-current-date-time-query","tag-oracle-current-timestamp","tag-oracle-current-timestamp-function","tag-oracle-current-timestamp-query","tag-oracle-current_date-function","tag-oracle-current_timestamp-function","tag-oracle-date-format-functions","tag-oracle-date-functions","tag-oracle-date-now-timestamp","tag-oracle-day-of-week","tag-oracle-db-sysdate","tag-oracle-extract-hour-and-minute-from-date","tag-oracle-extract-year-from-date-as-number","tag-oracle-get-current-date","tag-oracle-get-timestamp","tag-oracle-get-year-from-date","tag-oracle-pl-sql-time-functions","tag-oracle-sql-difference-between-sysdate-and-current_date","tag-oracle-sql-get-current-date-time","tag-oracle-sql-time-functions","tag-oracle-sysdate-query","tag-oracle-sysdate-time","tag-oracle-systimestamp","tag-oracle-trunc-date","tag-oracle-trunc-date-only-year","tag-oracle-trunc-example","tag-oracle-trunc-month","tag-oracle-trunc-month-and-year","tag-oracle-trunc-time","tag-oracle-week-function","tag-pl-sql-convert-date-to-month-and-year","tag-pl-sql-date-extract-year","tag-pl-sql-datetime","tag-pl-sql-day-number","tag-pl-sql-get-current-time","tag-pl-sql-get-date-now","tag-pl-sql-select-trunc-date","tag-pl-sql-sysdate-format","tag-pl-sql-year-of-date","tag-plsql-get-time","tag-round-date-function-sql-oracle","tag-round-date-oracle","tag-round-date-oracle-sql","tag-round-date-sql-oracle-example","tag-round-function-in-oracle-with-date","tag-round-function-with-date-in-oracle","tag-round-function-with-dates-in-oracle","tag-select-date-oracle","tag-select-sysdate-from","tag-sessiontimezone-function-in-oracle","tag-sql-developer-weekday","tag-sysdate-function-in-oracle","tag-sysdate-type-in-oracle","tag-systimestamp","tag-systimestamp-and-current_timestamp","tag-systimestamp-and-current_timestamp-oracle","tag-systimestamp-function-in-oracle","tag-systimestamp-oracle","tag-systimestamp-vs-current-timestamp-oracle","tag-systimestamp-vs-current_timestamp","tag-systimestamp-vs-current_timestamp-oracle","tag-systimestamp-vs-current_timestamp-vs-localtimestamp","tag-time-functions-in-oracle","tag-time-functions-in-plsql","tag-timestamp-function-in-oracle","tag-timestamp-function-in-oracle-example","tag-timestamp-functions-in-oracle-sql","tag-timezone-offset-function-oracle","tag-trunc-function-with-date-in-oracle","tag-trunc-function-with-dates-in-oracle","tag-trunc-sysdate-mm-in-oracle","tag-tz_offset-function-in-oracle","tag-week-of-date-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle Date Functions - Database Tutorials<\/title>\n<meta name=\"description\" content=\"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Date Functions - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-11T10:44:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-05T23:16:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png\" \/>\n\t<meta property=\"og:image:width\" content=\"441\" \/>\n\t<meta property=\"og:image:height\" content=\"251\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Yusuf SEZER\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yusuf SEZER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\"},\"author\":{\"name\":\"Yusuf SEZER\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\"},\"headline\":\"Oracle Date Functions\",\"datePublished\":\"2020-02-11T10:44:44+00:00\",\"dateModified\":\"2021-02-05T23:16:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\"},\"wordCount\":536,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png\",\"keywords\":[\"\/*+MONITOR*\/ Hint in Oracle\",\"ADD_MONTHS Function in Oracle\",\"current date function in oracle\",\"current date function in pl sql\",\"current timestamp function in oracle\",\"CURRENT_DATE Function in Oracle\",\"CURRENT_TIMESTAMP Function in Oracle\",\"date function oracle sql\",\"Date Functions in Oracle\",\"Date Functions in plsql\",\"DBTIMEZONE Function in Oracle\",\"diff between sysdate and current_date in oracle\",\"difference between current_date and sysdate\",\"difference between current_date and sysdate in oracle\",\"difference between current_timestamp and date\",\"difference between current_timestamp and sysdate\",\"difference between current_timestamp and sysdate in oracle\",\"difference between current_timestamp and systimestamp\",\"difference between current_timestamp and systimestamp in oracle\",\"difference between dbtimezone and sessiontimezone\",\"difference between dbtimezone and sessiontimezone in oracle\",\"difference between dbtimezone and systimestamp\",\"difference between now and sysdate function\",\"difference between now and sysdate in sql\",\"difference between sessiontimezone and dbtimezone\",\"difference between sysdate and curdate\",\"difference between sysdate and current_date in oracle\",\"difference between sysdate and current_date in sql\",\"difference between sysdate and current_timestamp in oracle\",\"difference between sysdate and date in oracle\",\"difference between sysdate and now\",\"difference between sysdate and timestamp in oracle\",\"difference between sysdate and trunc(sysdate) in oracle\",\"difference between sysdatetime and current_timestamp\",\"difference between systimestamp and current_timestamp\",\"difference between systimestamp and current_timestamp in oracle\",\"difference between systimestamp and dbtimezone\",\"difference between systimestamp and sysdate\",\"difference between systimestamp and sysdate in oracle\",\"difference current_date sysdate\",\"extract date from datetime sql oracle\",\"extract day from date in oracle\",\"extract function in oracle\",\"extract function in oracle for date\",\"extract function in oracle sql\",\"extract month oracle sql\",\"extract year from date plsql\",\"get hour from datetime oracle sql\",\"get year from date in oracle pl sql\",\"how to get month from date oracle\",\"last day function in oracle with example\",\"last day function in pl sql\",\"last_day function in oracle\",\"last_day function in oracle sql\",\"last_day function in oracle with example\",\"last_day function in oracle with examples\",\"localtimestamp function in oracle\",\"NEXT_DAY Function in Oracle\",\"next_day function in oracle pl sql\",\"next_day function in oracle with examples\",\"next_day function in pl sql\",\"oracle ADD_MONTHS function\",\"oracle current date time query\",\"oracle current timestamp\",\"oracle current timestamp function\",\"oracle current timestamp query\",\"Oracle CURRENT_DATE Function\",\"Oracle CURRENT_TIMESTAMP Function\",\"oracle date format functions\",\"oracle date functions\",\"oracle date now timestamp\",\"oracle day of week\",\"oracle db sysdate\",\"oracle extract hour and minute from date\",\"oracle extract year from date as number\",\"oracle get current date\",\"oracle get timestamp\",\"oracle get year from date\",\"oracle pl sql time functions\",\"oracle sql difference between sysdate and current_date\",\"oracle sql get current date time\",\"oracle sql time functions\",\"oracle sysdate query\",\"oracle sysdate time\",\"oracle systimestamp\",\"oracle trunc date\",\"oracle trunc date only year\",\"oracle trunc example\",\"oracle trunc month\",\"oracle trunc month and year\",\"oracle trunc time\",\"oracle week function\",\"pl sql convert date to month and year\",\"pl sql date extract year\",\"pl sql datetime\",\"pl sql day number\",\"pl sql get current time\",\"pl sql get date now\",\"pl sql select trunc date\",\"pl sql sysdate format\",\"pl sql year of date\",\"plsql get time\",\"round date function sql oracle\",\"round date oracle\",\"round date oracle sql\",\"round date sql oracle example\",\"round function in oracle with date\",\"round function with date in oracle\",\"round function with dates in oracle\",\"select date oracle\",\"select sysdate from\",\"SESSIONTIMEZONE Function in Oracle\",\"sql developer weekday\",\"SYSDATE Function in Oracle\",\"sysdate type in oracle\",\"systimestamp\",\"systimestamp and current_timestamp\",\"systimestamp and current_timestamp oracle\",\"SYSTIMESTAMP Function in Oracle\",\"systimestamp oracle\",\"systimestamp vs current timestamp oracle\",\"systimestamp vs current_timestamp\",\"systimestamp vs current_timestamp oracle\",\"systimestamp vs current_timestamp vs localtimestamp\",\"time Functions in Oracle\",\"time Functions in plsql\",\"timestamp function in oracle\",\"timestamp function in oracle example\",\"timestamp functions in oracle sql\",\"timezone offset function oracle\",\"trunc function with date in oracle\",\"trunc function with dates in oracle\",\"trunc sysdate mm ') in oracle\",\"TZ_OFFSET Function in Oracle\",\"week of date oracle\"],\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\",\"name\":\"Oracle Date Functions - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png\",\"datePublished\":\"2020-02-11T10:44:44+00:00\",\"dateModified\":\"2021-02-05T23:16:04+00:00\",\"description\":\"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png\",\"width\":441,\"height\":251},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Date Functions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\",\"name\":\"Yusuf SEZER\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"caption\":\"Yusuf SEZER\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Date Functions - Database Tutorials","description":"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Date Functions - Database Tutorials","og_description":"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.","og_url":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/","og_site_name":"Database Tutorials","article_published_time":"2020-02-11T10:44:44+00:00","article_modified_time":"2021-02-05T23:16:04+00:00","og_image":[{"width":441,"height":251,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png","type":"image\/png"}],"author":"Yusuf SEZER","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf SEZER","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/"},"author":{"name":"Yusuf SEZER","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a"},"headline":"Oracle Date Functions","datePublished":"2020-02-11T10:44:44+00:00","dateModified":"2021-02-05T23:16:04+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/"},"wordCount":536,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png","keywords":["\/*+MONITOR*\/ Hint in Oracle","ADD_MONTHS Function in Oracle","current date function in oracle","current date function in pl sql","current timestamp function in oracle","CURRENT_DATE Function in Oracle","CURRENT_TIMESTAMP Function in Oracle","date function oracle sql","Date Functions in Oracle","Date Functions in plsql","DBTIMEZONE Function in Oracle","diff between sysdate and current_date in oracle","difference between current_date and sysdate","difference between current_date and sysdate in oracle","difference between current_timestamp and date","difference between current_timestamp and sysdate","difference between current_timestamp and sysdate in oracle","difference between current_timestamp and systimestamp","difference between current_timestamp and systimestamp in oracle","difference between dbtimezone and sessiontimezone","difference between dbtimezone and sessiontimezone in oracle","difference between dbtimezone and systimestamp","difference between now and sysdate function","difference between now and sysdate in sql","difference between sessiontimezone and dbtimezone","difference between sysdate and curdate","difference between sysdate and current_date in oracle","difference between sysdate and current_date in sql","difference between sysdate and current_timestamp in oracle","difference between sysdate and date in oracle","difference between sysdate and now","difference between sysdate and timestamp in oracle","difference between sysdate and trunc(sysdate) in oracle","difference between sysdatetime and current_timestamp","difference between systimestamp and current_timestamp","difference between systimestamp and current_timestamp in oracle","difference between systimestamp and dbtimezone","difference between systimestamp and sysdate","difference between systimestamp and sysdate in oracle","difference current_date sysdate","extract date from datetime sql oracle","extract day from date in oracle","extract function in oracle","extract function in oracle for date","extract function in oracle sql","extract month oracle sql","extract year from date plsql","get hour from datetime oracle sql","get year from date in oracle pl sql","how to get month from date oracle","last day function in oracle with example","last day function in pl sql","last_day function in oracle","last_day function in oracle sql","last_day function in oracle with example","last_day function in oracle with examples","localtimestamp function in oracle","NEXT_DAY Function in Oracle","next_day function in oracle pl sql","next_day function in oracle with examples","next_day function in pl sql","oracle ADD_MONTHS function","oracle current date time query","oracle current timestamp","oracle current timestamp function","oracle current timestamp query","Oracle CURRENT_DATE Function","Oracle CURRENT_TIMESTAMP Function","oracle date format functions","oracle date functions","oracle date now timestamp","oracle day of week","oracle db sysdate","oracle extract hour and minute from date","oracle extract year from date as number","oracle get current date","oracle get timestamp","oracle get year from date","oracle pl sql time functions","oracle sql difference between sysdate and current_date","oracle sql get current date time","oracle sql time functions","oracle sysdate query","oracle sysdate time","oracle systimestamp","oracle trunc date","oracle trunc date only year","oracle trunc example","oracle trunc month","oracle trunc month and year","oracle trunc time","oracle week function","pl sql convert date to month and year","pl sql date extract year","pl sql datetime","pl sql day number","pl sql get current time","pl sql get date now","pl sql select trunc date","pl sql sysdate format","pl sql year of date","plsql get time","round date function sql oracle","round date oracle","round date oracle sql","round date sql oracle example","round function in oracle with date","round function with date in oracle","round function with dates in oracle","select date oracle","select sysdate from","SESSIONTIMEZONE Function in Oracle","sql developer weekday","SYSDATE Function in Oracle","sysdate type in oracle","systimestamp","systimestamp and current_timestamp","systimestamp and current_timestamp oracle","SYSTIMESTAMP Function in Oracle","systimestamp oracle","systimestamp vs current timestamp oracle","systimestamp vs current_timestamp","systimestamp vs current_timestamp oracle","systimestamp vs current_timestamp vs localtimestamp","time Functions in Oracle","time Functions in plsql","timestamp function in oracle","timestamp function in oracle example","timestamp functions in oracle sql","timezone offset function oracle","trunc function with date in oracle","trunc function with dates in oracle","trunc sysdate mm ') in oracle","TZ_OFFSET Function in Oracle","week of date oracle"],"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/","url":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/","name":"Oracle Date Functions - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png","datePublished":"2020-02-11T10:44:44+00:00","dateModified":"2021-02-05T23:16:04+00:00","description":"This article contains information about oracle date functions such as sysdate, last_day, add_months, extract.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-7.png","width":441,"height":251},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/11\/oracle-date-functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle Date Functions"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a","name":"Yusuf SEZER","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","caption":"Yusuf SEZER"},"url":"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14941","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/485"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=14941"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14941\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/14944"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=14941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=14941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=14941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}