doc-exports/docs/dws/tool/dws_16_0180.html
Lu, Huayi 27019c2991 DWS TOOL 830.201 version
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2024-05-16 07:35:25 +00:00

26 lines
1.8 KiB
HTML

<a name="EN-US_TOPIC_0000001819416269"></a><a name="EN-US_TOPIC_0000001819416269"></a>
<h1 class="topictitle1">INTERVAL</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_p16581841135716">In MySQL, the interval expression format is INTERVAL N, which is not supported by GaussDB(DWS) and needs to be converted to INTERVAL'N'.</p>
<p id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_p14581541125710"><strong id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_b17662071558">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_screen341820141654">SELECT CURRENT_TIME() - INTERVAL 4 DAY;
SELECT NOW() - INTERVAL 5 HOUR;
SELECT CURRENT_TIME() - INTERVAL '4' DAY;
SELECT NOW() - INTERVAL '5' HOUR;
SELECT CURRENT_TIME() - INTERVAL "4" DAY;
SELECT NOW() - INTERVAL "5" HOUR;</pre>
<p id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_p15581104118577"><strong id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_b847116102510">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416269__en-us_topic_0000001706104825_en-us_topic_0000001391841108_screen1331120858">SELECT (CURRENT_TIME () - INTERVAL '4' DAY);
SELECT (NOW () - INTERVAL '5' HOUR);
SELECT (CURRENT_TIME () - INTERVAL '4' DAY);
SELECT (NOW () - INTERVAL '5' HOUR);
SELECT (CURRENT_TIME () - INTERVAL '4' DAY);
SELECT (NOW () - INTERVAL '5' HOUR);</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0178.html">SELECT</a></div>
</div>
</div>