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>
33 lines
2.9 KiB
HTML
33 lines
2.9 KiB
HTML
<a name="EN-US_TOPIC_0000001819336241"></a><a name="EN-US_TOPIC_0000001819336241"></a>
|
|
|
|
<h1 class="topictitle1">HIGH_PRIORITY</h1>
|
|
<div id="body8662426"><p id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_p463241114475"></p>
|
|
<p id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_p118789701911">MySQL uses HIGH_PRIORITY will override the effect of the LOW_PRIORITY option.</p>
|
|
<p id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_p8060118"><strong id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_b17421058141410">Input</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_screen593131013157"># HIGH_PRIORITY
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 VALUES(100, 12.3, 'cheap', '2018-11-11');
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 VALUES(DEFAULT, 128.23, 'nice', '2018-10-11');
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', '2018-12-14');
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 VALUES(DEFAULT, DEFAULT, 'nice', DEFAULT);
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price) VALUES(DEFAULT, DEFAULT);
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price, tb2_note) VALUES(DEFAULT, DEFAULT, DEFAULT);
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price , tb2_note) VALUES(DEFAULT, DEFAULT, DEFAULT);
|
|
INSERT HIGH_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price, tb2_note, tb2_date) VALUES(DEFAULT, DEFAULT, DEFAULT, DEFAULT);</pre>
|
|
<p id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_p11375155861510"><strong id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_b7625973174">Output</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001819336241__en-us_topic_0000001658024958_en-us_topic_0000001437771657_en-us_topic_0214164476_screen1739017129175">-- HIGH_PRIORITY
|
|
INSERT INTO "public"."exmp_tb2" VALUES (100,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") 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>
|
|
|