<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>OpenText Analytics Database 26.2.x – INTERVAL</title>
    <link>/en/sql-reference/data-types/datetime-data-types/interval/</link>
    <description>Recent content in INTERVAL on OpenText Analytics Database 26.2.x</description>
    <generator>Hugo -- gohugo.io</generator>
    
	  <atom:link href="/en/sql-reference/data-types/datetime-data-types/interval/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Sql-Reference: Setting interval unit display</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/setting-interval-unit-display/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/setting-interval-unit-display/</guid>
      <description>
        
        
        &lt;p&gt;&lt;a href=&#34;../../../../../en/sql-reference/statements/set-statements/set-intervalstyle/#&#34;&gt;SET INTERVALSTYLE&lt;/a&gt; and &lt;a href=&#34;../../../../../en/sql-reference/statements/set-statements/set-datestyle/#&#34;&gt;SET DATESTYLE&lt;/a&gt; control the output format of interval units.

&lt;div class=&#34;admonition important&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Important&lt;/h4&gt;
DATESTYLE settings supersede INTERVALSTYLE. If DATESTYLE is set to SQL, interval unit display always conforms to the SQL:2008 standard, which omits interval unit display. If DATESTYLE is set to ISO, you can use &lt;a href=&#34;../../../../../en/sql-reference/statements/set-statements/set-intervalstyle/#&#34;&gt;SET INTERVALSTYLE&lt;/a&gt; to omit or display interval unit display, as described below.
&lt;/div&gt;&lt;/p&gt;
&lt;h2 id=&#34;omitting-interval-units&#34;&gt;Omitting interval units&lt;/h2&gt;
&lt;p&gt;To omit interval units from the output, set &lt;code&gt;INTERVALSTYLE&lt;/code&gt; to &lt;code&gt;PLAIN&lt;/code&gt;. This is the default setting, which conforms with the SQL:2008 standard:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SET INTERVALSTYLE TO PLAIN;
SET
=&amp;gt; SELECT INTERVAL &amp;#39;3 2&amp;#39;;
?column?
----------
 3 02:00
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;When &lt;code&gt;INTERVALSTYLE&lt;/code&gt; is set to &lt;code&gt;PLAIN&lt;/code&gt;, units are omitted from the output, even if the query specifies input units:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;3 days 2 hours&amp;#39;;
 ?column?
----------
 3 02:00
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If &lt;code&gt;DATESTYLE&lt;/code&gt; is set to &lt;code&gt;SQL&lt;/code&gt;, OpenText™ Analytics Database conforms with SQL:2008 standard and always omits interval units from output:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
=&amp;gt; SET DATESTYLE TO SQL;
SET
=&amp;gt; SET INTERVALSTYLE TO UNITS;
SET
=&amp;gt; SELECT INTERVAL &amp;#39;3 2&amp;#39;;
 ?column?
----------
 3 02:00
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;displaying-interval-units&#34;&gt;Displaying interval units&lt;/h2&gt;
&lt;p&gt;To enable display of interval units, &lt;code&gt;DATESTYLE&lt;/code&gt; must be set to ISO. You can then display interval units by setting &lt;code&gt;INTERVALSTYLE&lt;/code&gt; to &lt;code&gt;UNITS&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
=&amp;gt; SET DATESTYLE TO ISO;
SET
=&amp;gt; SET INTERVALSTYLE TO UNITS;
SET
=&amp;gt; SELECT INTERVAL &amp;#39;3 2&amp;#39;;
 ?column?
----------------
 3 days 2 hours
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;checking-intervalstyle-and-datestyle-settings&#34;&gt;Checking INTERVALSTYLE and DATESTYLE settings&lt;/h2&gt;
&lt;p&gt;Use 
&lt;code&gt;&lt;a href=&#34;../../../../../en/sql-reference/statements/show/#&#34;&gt;SHOW&lt;/a&gt;&lt;/code&gt; statements to check &lt;code&gt;INTERVALSTYLE&lt;/code&gt; and &lt;code&gt;DATESTYLE&lt;/code&gt; settings:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SHOW INTERVALSTYLE;
     name      | setting
---------------+---------
 intervalstyle | units
=&amp;gt; SHOW DATESTYLE;
   name    | setting
-----------+----------
 datestyle | ISO, MDY
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Specifying interval input</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/specifying-interval-input/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/specifying-interval-input/</guid>
      <description>
        
        
        &lt;p&gt;Interval values are expressed through &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/&#34;&gt;interval literals&lt;/a&gt;. An interval literal is composed of one or more interval fields, where each field represents a span of days and time, or years and months, as follows:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;[-] { &lt;span class=&#34;code-variable&#34;&gt;quantity&lt;/span&gt; &lt;span class=&#34;code-variable&#34;&gt;&lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/#&#34;&gt;subtype-unit&lt;/a&gt;&lt;/span&gt; }[...] [AGO]
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;using-subtype-units&#34;&gt;Using subtype units&lt;/h2&gt;
&lt;p&gt;Subtype units are optional for &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/#DayTimeSubtypes&#34;&gt;day-time&lt;/a&gt; intervals; they must be specified for &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/#YearMonthSubtype&#34;&gt;year-month&lt;/a&gt; intervals.&lt;/p&gt;
&lt;p&gt;For example, the first statement below implicitly specifies days and time; the second statement explicitly identifies day and time units. Both statements return the same result:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
=&amp;gt; SET INTERVALSTYLE TO UNITS;
=&amp;gt; SELECT INTERVAL &amp;#39;1 12:59:10:05&amp;#39;;
      ?column?
--------------------
 1 day 12:59:10.005
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;1 day 12 hours 59 min 10 sec 5 milliseconds&amp;#39;;
      ?column?
--------------------
 1 day 12:59:10.005
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The following two statements add 28 days and 4 weeks to the current date, respectively. The intervals in both cases are equal and the statements return the same result. However, in the first statement, the interval literal omits the subtype (implicitly &lt;code&gt;days&lt;/code&gt;); in the second statement, the interval literal must include the subtype unit &lt;code&gt;weeks&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT CURRENT_DATE;
  ?column?
------------
 2016-08-15
(1 row)

=&amp;gt; SELECT CURRENT_DATE + INTERVAL &amp;#39;28&amp;#39;;
      ?column?
---------------------
 2016-09-12 00:00:00
(1 row)

dbadmin=&amp;gt; SELECT CURRENT_DATE + INTERVAL &amp;#39;4 weeks&amp;#39;;
      ?column?
---------------------
 2016-09-12 00:00:00
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;An interval literal can include day-time and year-month fields. For example, the following statement adds an interval of 4 years, 4 weeks, 4 days and 14 hours to the current date. The years and weeks fields must include subtype units; the days and hours fields omit them:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;gt; SELECT CURRENT_DATE + INTERVAL &amp;#39;4 years 4 weeks 4 14&amp;#39;;
      ?column?
---------------------
 2020-09-15 14:00:00
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;omitting-subtype-units&#34;&gt;Omitting subtype units&lt;/h2&gt;
&lt;p&gt;You can specify quantities of days, hours, minutes, and seconds without specifying units. OpenText™ Analytics Database recognizes colons in interval literals as part of the timestamp:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1 4 5 6&amp;#39;;
 ?column?
------------
 1 day 04:05:06
=&amp;gt; SELECT INTERVAL &amp;#39;1 4:5:6&amp;#39;;
 ?column?
------------
 1 day 04:05:06
=&amp;gt; SELECT INTERVAL &amp;#39;1 day 4 hour 5 min 6 sec&amp;#39;;
 ?column?
------------
 1 day 04:05:06
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If the database cannot determine the units, it applies the quantity to any missing units based on the interval qualifier. In the next two examples, the database uses the default interval qualifier (&lt;code&gt;DAY TO SECOND(6)&lt;/code&gt;) and assigns the trailing &lt;code&gt;1&lt;/code&gt; to days, since it has already processed hours, minutes, and seconds in the output:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;4:5:6 1&amp;#39;;
 ?column?
------------
 1 day 04:05:06
=&amp;gt; SELECT INTERVAL &amp;#39;1 4:5:6&amp;#39;;
 ?column?
------------
 1 day 04:05:06
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;In the next two examples, the database recognizes &lt;code&gt;4:5&lt;/code&gt; as &lt;code&gt;hours:minutes&lt;/code&gt;. The remaining values in the interval literal are assigned to the missing units: &lt;code&gt;1&lt;/code&gt; is assigned to days and &lt;code&gt;2&lt;/code&gt; is assigned to seconds.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;SELECT INTERVAL &amp;#39;4:5 1 2&amp;#39;;
  ?column?
------------
 1 day 04:05:02
=&amp;gt; SELECT INTERVAL &amp;#39;1 4:5 2&amp;#39;;
 ?column?
------------
 1 day 04:05:02
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Specifying the interval qualifier can change how the database interprets &lt;code&gt;4:5&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;4:5&amp;#39; MINUTE TO SECOND;
  ?column?
------------
 00:04:05
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Controlling interval format</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/controlling-interval-format/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/controlling-interval-format/</guid>
      <description>
        
        
        &lt;p&gt;&lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/&#34;&gt;Interval qualifiers&lt;/a&gt; specify a range of options that OpenText™ Analytics Database uses to interpret and format an &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/&#34;&gt;interval literal&lt;/a&gt;. The interval qualifier can also specify precision. Each interval qualifier is composed of one or two units:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&lt;span class=&#34;code-variable&#34;&gt;unit&lt;/span&gt;[&lt;span class=&#34;code-variable&#34;&gt;p&lt;/span&gt;] [ TO &lt;span class=&#34;code-variable&#34;&gt;unit&lt;/span&gt;[&lt;span class=&#34;code-variable&#34;&gt;p&lt;/span&gt;] ]
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;&lt;code&gt;unit&lt;/code&gt;&lt;/em&gt; specifies a day-time or year-month &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/&#34;&gt;subtype&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;&lt;code&gt;p&lt;/code&gt;&lt;/em&gt; specifies precision, an integer between 0 and 6. In general, precision only applies to &lt;code&gt;SECOND&lt;/code&gt; units. The default precision for &lt;code&gt;SECOND&lt;/code&gt; is 6. For details, see &lt;a href=&#34;../../../../../en/sql-reference/data-types/datetime-data-types/interval/specifying-interval-precision/#&#34;&gt;Specifying interval precision&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If an interval omits an interval qualifier, the database uses the default &lt;code&gt;DAY TO SECOND(6)&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;interval-qualifier-categories&#34;&gt;Interval qualifier categories&lt;/h2&gt;
&lt;p&gt;Interval qualifiers belong to one of the following categories:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;#Year-Mon&#34;&gt;Year-month&lt;/a&gt;: Span of years and months&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;#Day-Time&#34;&gt;Day-time&lt;/a&gt;: Span of days, hours, minutes, seconds, and fractional seconds&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;

All examples below assume that &lt;a href=&#34;../../../../../en/sql-reference/statements/set-statements/set-intervalstyle/&#34;&gt;INTERVALSTYLE&lt;/a&gt; is set to plain.

&lt;/div&gt;
&lt;p&gt;&lt;a name=&#34;Year-Mon&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;year-monthbr-&#34;&gt;Year-Month&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;The database supports two year-month subtypes: &lt;code&gt;YEAR&lt;/code&gt; and &lt;code&gt;MONTH&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In the following example, &lt;code&gt;YEAR TO MONTH&lt;/code&gt; qualifies the interval literal &lt;code&gt;1 2&lt;/code&gt; to indicate a span of 1 year and two months:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT interval &amp;#39;1 2&amp;#39; YEAR TO MONTH;
 ?column?
----------
 1-2
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you omit the qualifier, the database uses the default interval qualifier &lt;code&gt;DAY TO SECOND&lt;/code&gt; and returns a different result:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT interval &amp;#39;1 2&amp;#39;;
 ?column?
----------
 1 02:00
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The following example uses the interval qualifier &lt;code&gt;YEAR&lt;/code&gt;. In this case, the database extracts only the year from the interval literal &lt;code&gt;1y 10m&lt;/code&gt; :&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1y 10m&amp;#39; YEAR;
 ?column?
----------
 1
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;In the next example, the interval qualifier &lt;code&gt;MONTH&lt;/code&gt; converts the same interval literal to months:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1y 10m&amp;#39; MONTH;
 ?column?
----------
 22
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a name=&#34;Day-Time&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;day-time&#34;&gt;Day-time&lt;/h3&gt;
&lt;p&gt;The database supports four day-time subtypes: &lt;code&gt;DAY&lt;/code&gt;, &lt;code&gt;HOUR&lt;/code&gt;, &lt;code&gt;MINUTE&lt;/code&gt;, and &lt;code&gt;SECOND&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In the following example, the interval qualifier &lt;code&gt;DAY TO SECOND(4)&lt;/code&gt; qualifies the interval literal &lt;code&gt;1h 3m 6s 5msecs 57us&lt;/code&gt;. The qualifier also sets precision on seconds to 4:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1h 3m 6s 5msecs 57us&amp;#39; DAY TO SECOND(4);
   ?column?
---------------
 01:03:06.0051
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If no interval qualifier is specified, the database uses the default subtype &lt;code&gt;DAY TO SECOND(6)&lt;/code&gt;, regardless of how you specify the interval literal. For example, as an extension to SQL:2008, both of the following commands return &lt;code&gt;910&lt;/code&gt; &lt;code&gt;days&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;2-6&amp;#39;;
    ?column?
-----------------
 910
=&amp;gt; SELECT INTERVAL &amp;#39;2 years 6 months&amp;#39;;
 ?column?
-----------------
 910
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;An interval qualifier can extract other values from the input parameters. For example, the following command extracts the &lt;code&gt;HOUR&lt;/code&gt; value from the interval literal &lt;code&gt;3 days 2 hours&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;3 days 2 hours&amp;#39; HOUR;
 ?column?
----------
 74
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The primary day/time (&lt;code&gt;DAY TO SECOND&lt;/code&gt;) and year/month (&lt;code&gt;YEAR TO MONTH&lt;/code&gt;) subtype ranges can be restricted to more specific range of types by an interval qualifier. For example, &lt;code&gt;HOUR TO MINUTE&lt;/code&gt; is a limited form of day/time interval, which can be used to express time zone offsets.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1 3&amp;#39; HOUR to MINUTE;
 ?column?
---------------
 01:03
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;hh:mm:ss&lt;/code&gt; and &lt;code&gt;hh:mm&lt;/code&gt; formats are used only when at least two of the fields specified in the interval qualifier are non-zero and there are no more than 23 hours or 59 minutes:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;2 days 12 hours 15 mins&amp;#39; DAY TO MINUTE;
  ?column?
--------------
 2 12:15
=&amp;gt; SELECT INTERVAL &amp;#39;15 mins 20 sec&amp;#39; MINUTE TO SECOND;
 ?column?
----------
 15:20
=&amp;gt; SELECT INTERVAL &amp;#39;1 hour 15 mins 20 sec&amp;#39; MINUTE TO SECOND;
 ?column?
-----------------
 75:20
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Specifying interval precision</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/specifying-interval-precision/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/specifying-interval-precision/</guid>
      <description>
        
        
        &lt;p&gt;In general, interval precision only applies to seconds. If no precision is explicitly specified, OpenText™ Analytics Database rounds precision to a maximum of six decimal places. For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;2 hours 4 minutes 3.709384766 seconds&amp;#39; DAY TO SECOND;
    ?column?
-----------------
 02:04:03.709385
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The database lets you specify interval precision in two ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;After the &lt;code&gt;INTERVAL&lt;/code&gt; keyword&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After the &lt;code&gt;SECOND&lt;/code&gt; unit of an interval qualifier, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;DAY TO SECOND&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;HOUR TO SECOND&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;MINUTE TO SECOND&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;SECOND&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For example, the following statements use both methods to set precision, and return identical results:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL(4) &amp;#39;2 hours 4 minutes 3.709384766 seconds&amp;#39; DAY TO SECOND;
   ?column?
---------------
 02:04:03.7094
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;2 hours 4 minutes 3.709384766 seconds&amp;#39; DAY TO SECOND(4);
   ?column?
---------------
 02:04:03.7094
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If the same statement specifies precision more than once, the database uses the lesser precision. For example, the following statement specifies precision twice: the &lt;code&gt;INTERVAL&lt;/code&gt; keyword specifies precision of 1, while the interval qualifier &lt;code&gt;SECOND&lt;/code&gt; specifies precision of 2. The database uses the lesser precision of 1:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL(1) &amp;#39;1.2467&amp;#39; SECOND(2);
 ?column?
----------
 1.2 secs
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;setting-precision-on-interval-table-columns&#34;&gt;Setting precision on interval table columns&lt;/h2&gt;
&lt;p&gt;If you create a table with an interval column, the following restrictions apply to the column definition:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;You can set precision on the &lt;code&gt;INTERVAL&lt;/code&gt; keyword only if you omit specifying an interval qualifier. If you try to set precision on the &lt;code&gt;INTERVAL&lt;/code&gt; keyword and include an interval qualifier, the database returns an error.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can set precision only on the last unit of an interval qualifier. For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;CREATE TABLE public.testint2
(
    i INTERVAL HOUR TO SECOND(3)
);
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you specify precision on another unit, the database discards it when it saves the table definition.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Fractional seconds in interval units</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/fractional-seconds-interval-units/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/fractional-seconds-interval-units/</guid>
      <description>
        
        
        &lt;p&gt;OpenText™ Analytics Database supports intervals in milliseconds (hh:mm:ss:ms), where &lt;code&gt;01:02:03:25&lt;/code&gt; represents 1 hour, 2 minutes, 3 seconds, and 025 milliseconds. Milliseconds are converted to fractional seconds as in the following example, which returns 1 day, 2 hours, 3 minutes, 4 seconds, and 25.5 milliseconds:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1 02:03:04:25.5&amp;#39;;
  ?column?
------------
 1 day 02:03:04.0255
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The database allows fractional minutes. The fractional minutes are rounded into seconds:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;10.5 minutes&amp;#39;;
  ?column?
------------
 00:10:30
=&amp;gt; select interval &amp;#39;10.659 minutes&amp;#39;;
  ?column?
-------------
 00:10:39.54
=&amp;gt; select interval &amp;#39;10.3333333333333 minutes&amp;#39;;
 ?column?
----------
 00:10:20
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;considerations&#34;&gt;Considerations&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;An &lt;code&gt;INTERVAL&lt;/code&gt; can include only the subset of units that you need; however, year/month intervals represent calendar years and months with no fixed number of days, so year/month interval values cannot include days, hours, minutes. When year/month values are specified for day/time intervals, the intervals extension assumes 30 days per month and 365 days per year. Since the length of a given month or year varies, day/time intervals are never output as months or years, only as days, hours, minutes, and so on.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Day/time and year/month intervals are logically independent and cannot be combined with or compared to each other. In the following example, an interval-literal that contains &lt;code&gt;DAYS&lt;/code&gt; cannot be combined with the &lt;code&gt;YEAR TO MONTH&lt;/code&gt; type:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1 2 3&amp;#39; YEAR TO MONTH;
ERROR 3679:  Invalid input syntax for interval year to month: &amp;#34;1 2 3&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The database accepts intervals up to 2^63 – 1 microseconds or months (about 18 digits).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;INTERVAL YEAR TO MONTH&lt;/code&gt; can be used in an analytic &lt;a href=&#34;../../../../../en/data-analysis/sql-analytics/window-framing/windows-with-logical-offset-range/&#34;&gt;RANGE window&lt;/a&gt; when the &lt;code&gt;ORDER BY&lt;/code&gt; column type is &lt;code&gt;TIMESTAMP/TIMESTAMP WITH TIMEZONE&lt;/code&gt;, or &lt;code&gt;DATE&lt;/code&gt;. Using &lt;code&gt;TIME/TIME WITH TIMEZONE&lt;/code&gt; are not supported.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can use &lt;code&gt;INTERVAL DAY TO SECOND&lt;/code&gt; when the &lt;code&gt;ORDER BY&lt;/code&gt; column type is &lt;code&gt;TIMESTAMP/TIMESTAMP WITH TIMEZONE&lt;/code&gt;, &lt;code&gt;DATE&lt;/code&gt;, and &lt;code&gt;TIME/TIME WITH TIMEZONE&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;Examples in this section assume that INTERVALSTYLE is set to PLAIN, so results omit &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-subtype-units/&#34;&gt;subtype units&lt;/a&gt;. Interval values that omit an &lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-qualifier/&#34;&gt;interval qualifier&lt;/a&gt; use the default to DAY TO SECOND(6).&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;00:2500:00&amp;#39;;
 ?column?
----------
 1 17:40
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;2500&amp;#39; MINUTE TO SECOND;
 ?column?
----------
 2500
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;2500&amp;#39; MINUTE;
 ?column?
----------
 2500
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;28 days 3 hours&amp;#39; HOUR TO SECOND;
 ?column?
----------
 675:00
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3 hours&amp;#39;;
 ?column?
----------
 28 03:00
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3 hours 1.234567&amp;#39;;
    ?column?
-----------------
 28 03:01:14.074
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3 hours 1.234567 sec&amp;#39;;
    ?column?
-----------------
 28 03:00:01.235
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3.3 hours&amp;#39; HOUR TO SECOND;
 ?column?
----------
 675:18
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3.35 hours&amp;#39; HOUR TO SECOND;
 ?column?
----------
 675:21
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;28 days 3.37 hours&amp;#39; HOUR TO SECOND;
 ?column?
-----------
 675:22:12
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;1.234567 days&amp;#39; HOUR TO SECOND;
   ?column?
---------------
 29:37:46.5888
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;1.23456789 days&amp;#39; HOUR TO SECOND;
    ?column?
-----------------
 29:37:46.665696
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;1.23456789 days&amp;#39; HOUR TO SECOND;
   ?column?
--------------
 29:37:46.666
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;1.23456789 days&amp;#39; HOUR TO SECOND(2);
  ?column?
-------------
 29:37:46.67
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39; as &amp;#34;one hour+&amp;#34;;
  one hour+
--------------
 01:00:01.235
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39; = INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39;;
 ?column?
----------
 t
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39; = INTERVAL &amp;#39;01:00:01.234567&amp;#39;;
 ?column?
----------
 f
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39; = INTERVAL &amp;#39;01:00:01.234567&amp;#39;
HOUR TO SECOND(3);
 ?column?
----------
 t
(1 row)

=&amp;gt; SELECT INTERVAL(3) &amp;#39;01:00:01.234567&amp;#39; = INTERVAL &amp;#39;01:00:01.234567&amp;#39;
MINUTE TO SECOND(3);
 ?column?
----------
 t
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;255 1.1111&amp;#39; MINUTE TO SECOND(3);
  ?column?
------------
 255:01.111
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;@ - 5 ago&amp;#39;;
 ?column?
----------
 5
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;@ - 5 minutes ago&amp;#39;;
 ?column?
----------
 00:05
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;@ 5 minutes ago&amp;#39;;
 ?column?
----------
 -00:05
(1 row)

=&amp;gt; SELECT INTERVAL &amp;#39;@ ago -5 minutes&amp;#39;;
 ?column?
----------
 00:05
(1 row)

=&amp;gt; SELECT DATE_PART(&amp;#39;month&amp;#39;, INTERVAL &amp;#39;2-3&amp;#39; YEAR TO MONTH);
 DATE_PART
-----------
         3
(1 row)

=&amp;gt; SELECT FLOOR((TIMESTAMP &amp;#39;2005-01-17 10:00&amp;#39;
  - TIMESTAMP &amp;#39;2005-01-01&amp;#39;)
/ INTERVAL &amp;#39;7&amp;#39;);
 FLOOR
-------
     2
(1 row)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Processing signed intervals</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/processing-signed-intervals/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/processing-signed-intervals/</guid>
      <description>
        
        
        &lt;p&gt;In the SQL:2008 standard, a minus sign before an interval-literal or as the first character of the interval-literal negates the entire literal, not just the first component. In OpenText™ Analytics Database, a leading minus sign negates the entire interval, not just the first component. The following commands both return the same value:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;-1 month - 1 second&amp;#39;;
 ?column?
----------
 -29 days 23:59:59

=&amp;gt; SELECT INTERVAL -&amp;#39;1 month - 1 second&amp;#39;;
 ?column?
----------
 -29 days 23:59:59
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Use one of the following commands instead to return the intended result:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL -&amp;#39;1 month 1 second&amp;#39;;
 ?column?
----------
 -30 days 1 sec
=&amp;gt; SELECT INTERVAL -&amp;#39;30 00:00:01&amp;#39;;
 ?column?
----------
 -30 days 1 sec
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Two negatives together return a positive:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL -&amp;#39;-1 month - 1 second&amp;#39;;
 ?column?
----------
 29 days 23:59:59
=&amp;gt; SELECT INTERVAL -&amp;#39;-1 month 1 second&amp;#39;;
 ?column?
----------
 30 days 1 sec
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can use the year-month syntax with no spaces. The database allows the input of negative months but requires two negatives when paired with years.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;3-3&amp;#39; YEAR TO MONTH;
 ?column?
----------
 3 years 3 months
=&amp;gt; SELECT INTERVAL &amp;#39;3--3&amp;#39; YEAR TO MONTH;
 ?column?
----------
 2 years 9 months
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;When the interval-literal looks like a year/month type, but the type is day/second, or vice versa, the database reads the interval-literal from left to right, where number-number is years-months, and number &amp;lt;space&amp;gt; &amp;lt;signed number&amp;gt; is whatever the units specify. The database processes the following command as (–) 1 year 1 month = (–) 365 + 30 = –395 days:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;-1-1&amp;#39; DAY TO HOUR;
 ?column?
----------
 -395 days
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you insert a space in the interval-literal, the database processes it based on the subtype &lt;code&gt;DAY TO HOUR&lt;/code&gt;: (–) 1 day – 1 hour = (–) 24 – 1 = –23 hours:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;-1 -1&amp;#39; DAY TO HOUR;
 ?column?
----------
 -23 hours
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Two negatives together returns a positive, so the database processes the following command as (–) 1 year – 1 month = (–) 365 – 30 = –335 days:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;-1--1&amp;#39; DAY TO HOUR;
  ?column?
----------
 -335 days
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you omit the value after the hyphen, the database assumes 0 months and processes the following command as 1 year 0 month –1 day = 365 + 0 – 1 = –364 days:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1- -1&amp;#39; DAY TO HOUR;
  ?column?
----------
 364 days
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Casting with intervals</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/casting-with-intervals/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/casting-with-intervals/</guid>
      <description>
        
        
        &lt;p&gt;You can use &lt;code&gt;CAST&lt;/code&gt; to convert strings to intervals, and vice versa.&lt;/p&gt;
&lt;h2 id=&#34;string-to-interval&#34;&gt;String to interval&lt;/h2&gt;
&lt;p&gt;You cast a string to an interval as follows:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;CAST( [ INTERVAL[(&lt;span class=&#34;code-variable&#34;&gt;p&lt;/span&gt;)] ] [-] ] &lt;span class=&#34;code-variable&#34;&gt;&lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/#&#34;&gt;interval-literal&lt;/a&gt;&lt;/span&gt; AS INTERVAL[(&lt;span class=&#34;code-variable&#34;&gt;p&lt;/span&gt;)] &lt;span class=&#34;code-variable&#34;&gt;&lt;a href=&#34;../../../../../en/sql-reference/language-elements/literals/datetime-literals/interval-literal/interval-qualifier/#&#34;&gt;interval-qualifier&lt;/a&gt;&lt;/span&gt; )
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT CAST(&amp;#39;3700 sec&amp;#39; AS INTERVAL);
 ?column?
----------
 01:01:40
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can cast intervals within day-time or the year-month subtypes but not between them:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT CAST(INTERVAL &amp;#39;4440&amp;#39; MINUTE as INTERVAL);
  ?column?
----------
 3 days 2 hours
=&amp;gt; SELECT CAST(INTERVAL -&amp;#39;01:15&amp;#39; as INTERVAL MINUTE);
 ?column?
----------
 -75 mins
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;interval-to-string&#34;&gt;Interval to string&lt;/h2&gt;
&lt;p&gt;You cast an interval to a string as follows:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;CAST( (SELECT &lt;span class=&#34;code-variable&#34;&gt;&lt;a href=&#34;../../../../../en/sql-reference/data-types/datetime-data-types/interval/#&#34;&gt;interval&lt;/a&gt;&lt;/span&gt; ) AS VARCHAR[(&lt;span class=&#34;code-variable&#34;&gt;n&lt;/span&gt;)] )
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT CONCAT(
  &amp;#39;Tomorrow at this time: &amp;#39;,
  CAST((SELECT INTERVAL &amp;#39;24 hours&amp;#39;) + CURRENT_TIMESTAMP(0) AS VARCHAR));
                    CONCAT
-----------------------------------------------
 Tomorrow at this time: 2016-08-17 08:41:23-04
(1 row)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: Operations with intervals</title>
      <link>/en/sql-reference/data-types/datetime-data-types/interval/operations-with-intervals/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/data-types/datetime-data-types/interval/operations-with-intervals/</guid>
      <description>
        
        
        &lt;p&gt;If you divide an interval by an interval, you get a &lt;code&gt;FLOAT&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;28 days 3 hours&amp;#39; HOUR(4) / INTERVAL &amp;#39;27 days 3 hours&amp;#39; HOUR(4);
 ?column?
------------
 1.036866359447
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;An &lt;code&gt;INTERVAL&lt;/code&gt; divided by &lt;code&gt;FLOAT&lt;/code&gt; returns an &lt;code&gt;INTERVAL&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;3&amp;#39; MINUTE / 1.5;
 ?column?
------------
 2 mins
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;INTERVAL MODULO&lt;/code&gt; (remainder) &lt;code&gt;INTERVAL&lt;/code&gt; returns an &lt;code&gt;INTERVAL&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;28 days 3 hours&amp;#39; HOUR % INTERVAL &amp;#39;27 days 3 hours&amp;#39; HOUR;
  ?column?
------------
 24 hours
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you add &lt;code&gt;INTERVAL&lt;/code&gt; and &lt;code&gt;TIME&lt;/code&gt;, the result is &lt;code&gt;TIME&lt;/code&gt;, modulo 24 hours:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT INTERVAL &amp;#39;1&amp;#39; HOUR + TIME &amp;#39;1:30&amp;#39;;
 ?column?
------------
 02:30:00
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
  </channel>
</rss>
