doc-exports/docs/dws/tool/dws_16_0199.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
2.2 KiB
HTML

<a name="EN-US_TOPIC_0000001772536568"></a><a name="EN-US_TOPIC_0000001772536568"></a>
<h1 class="topictitle1">LOW_PRIORITY</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_p32131018312">MySQL REPLACE supports the use of LOW_PRIORITY, which is converted by the Migration tool.</p>
<p id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_p8060118"><strong id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_b3432131715542">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_screen4506201965413"># LOW_PRIORITY
Replace LOW_PRIORITY INTO exmp_tb2 VALUES(1, '128.23', 'nice', '2018-10-11 19:00:00');
Replace LOW_PRIORITY INTO exmp_tb2 VALUES(2, DEFAULT, 'nice', '2018-12-14 19:00:00' );
Replace LOW_PRIORITY INTO exmp_tb2 VALUES(3, DEFAULT, 'nice', DEFAULT);
Replace LOW_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price) VALUES(5, DEFAULT);
Replace LOW_PRIORITY INTO exmp_tb2 (tb2_id, tb2_price, tb2_note) VALUES(4, DEFAULT, DEFAULT);</pre>
<p id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_p16908173019578"><strong id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_b19153143895714">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001772536568__en-us_topic_0000001658024538_en-us_topic_0000001438026841_en-us_topic_0214164610_screen16927144210574">-- LOW_PRIORITY
INSERT INTO "public"."exmp_tb2" VALUES (1,'128.23','nice','2018-10-11 19:00:00');
INSERT INTO "public"."exmp_tb2" VALUES (2,DEFAULT,'nice','2018-12-14 19:00:00');
INSERT INTO "public"."exmp_tb2" VALUES (3,DEFAULT,'nice',DEFAULT);
INSERT INTO "public"."exmp_tb2" ("tb2_id","tb2_price") VALUES (5,DEFAULT);
INSERT INTO "public"."exmp_tb2" ("tb2_id","tb2_price","tb2_note") VALUES (4,DEFAULT,DEFAULT);</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0198.html">REPLACE</a></div>
</div>
</div>