doc-exports/docs/dws/tool/dws_16_0188.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

34 lines
3.2 KiB
HTML

<a name="EN-US_TOPIC_0000001819416277"></a><a name="EN-US_TOPIC_0000001819416277"></a>
<h1 class="topictitle1">DELAYED</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_p26121335184910"></p>
<div class="notice" id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_note5949526295"><span class="noticetitle"><img src="public_sys-resources/notice_3.0-en-us.png"> </span><div class="noticebody"><p id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_p1497119263920">In MySQL 5.7, the <strong id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_b56114596731632">DELAYED</strong> keyword is recognized but ignored by the server.</p>
</div></div>
<p id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_p13257114517221"><strong id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_b71886381531632">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_screen15953195662215"># DELAYED
INSERT DELAYED INTO exmp_tb2 VALUES(99, 15.68, 'good', '2018-11-12');
INSERT DELAYED INTO exmp_tb2 VALUES(80, 12.3, 'cheap', '2018-11-11');
INSERT DELAYED INTO exmp_tb2 VALUES(DEFAULT, 128.23, 'nice', '2018-10-11');
INSERT DELAYED INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', '2018-12-14');
INSERT DELAYED INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', DEFAULT);
INSERT DELAYED INTO exmp_tb2 (tb2_id, tb2_price) VALUES(DEFAULT, DEFAULT);
INSERT DELAYED INTO exmp_tb2 (tb2_id, tb2_price, tb2_note) VALUES(DEFAULT, DEFAULT, DEFAULT);
INSERT DELAYED INTO exmp_tb2 (tb2_id, tb2_price, tb2_note, tb2_date) VALUES(DEFAULT, DEFAULT, DEFAULT, DEFAULT);</pre>
<p id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_p1937164612512"><strong id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_b63231953112520">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416277__en-us_topic_0000001657865378_en-us_topic_0000001387571562_en-us_topic_0214164590_screen205013568253">-- DELAYED
INSERT INTO "public"."exmp_tb2" VALUES (99,15.68,'good','2018-11-12');
INSERT INTO "public"."exmp_tb2" VALUES (80,12.3,'cheap','2018-11-11');
INSERT INTO "public"."exmp_tb2" VALUES (DEFAULT,128.23,'nice','2018-10-11');
INSERT INTO "public"."exmp_tb2" VALUES (DEFAULT,DEFAULT,'nice','2018-12-14');
INSERT INTO "public"."exmp_tb2" VALUES (DEFAULT,DEFAULT,'nice',DEFAULT);
INSERT INTO "public"."exmp_tb2" ("tb2_id","tb2_price") VALUES (DEFAULT,DEFAULT);
INSERT INTO "public"."exmp_tb2" ("tb2_id","tb2_price","tb2_note") VALUES (DEFAULT,DEFAULT,DEFAULT);
INSERT INTO "public"."exmp_tb2" ("tb2_id","tb2_price","tb2_note","tb2_date") VALUES (DEFAULT,DEFAULT,DEFAULT,DEFAULT);</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0184.html">INSERT</a></div>
</div>
</div>