forked from docs/doc-exports
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>
26 lines
2.5 KiB
HTML
26 lines
2.5 KiB
HTML
<a name="EN-US_TOPIC_0000001772696232"></a><a name="EN-US_TOPIC_0000001772696232"></a>
|
|
|
|
<h1 class="topictitle1">LOW_PRIORITY</h1>
|
|
<div id="body8662426"><p id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_p435710129191">When the <strong id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_b35381497032140">LOW_PRIORITY</strong> modifier is used, execution of <strong id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_b185343548332140">INSERT</strong> is delayed.</p>
|
|
<p id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_p8060118"><strong id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_b51401954191713">Input</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_screen1281419587177"># LOW_PRIORITY
|
|
INSERT LOW_PRIORITY INTO exmp_tb2 VALUES( DEFAULT, '128.23', 'nice', '2018-10-11');
|
|
INSERT LOW_PRIORITY INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', '2018-12-14' );
|
|
INSERT LOW_PRIORITY INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', DEFAULT);
|
|
INSERT LOW_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price) VALUES(DEFAULT, DEFAULT);
|
|
INSERT LOW_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price, tb2_note) VALUES(DEFAULT, DEFAULT, DEFAULT);</pre>
|
|
<p id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_p1624931841819"><strong id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_b3341172919186">Output</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772696232__en-us_topic_0000001657865694_en-us_topic_0000001438011249_en-us_topic_0214164694_screen1043813325188">-- LOW_PRIORITY
|
|
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);</pre>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0184.html">INSERT</a></div>
|
|
</div>
|
|
</div>
|
|
|