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>
18 lines
2.0 KiB
HTML
18 lines
2.0 KiB
HTML
<a name="EN-US_TOPIC_0000001772696236"></a><a name="EN-US_TOPIC_0000001772696236"></a>
|
|
|
|
<h1 class="topictitle1">VALUES</h1>
|
|
<div id="body8662426"><p id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_p8060118">INSERT statements that use the VALUES syntax can insert multiple lines, separated by commas.</p>
|
|
<p id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_p13900125273210"><strong id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_b15555619337">Input</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_screen1018565173318">INSERT INTO exmp_tb1 (tb1_name,tb1_sex,tb1_address,tb1_number) VALUES('David','male','NewYork','01015827875'),('Rachel','female','NewYork','01015827749'),('Monica','female','NewYork','010158996743');</pre>
|
|
<p id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_p430961011330"><strong id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_b08119217346">Output</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772696236__en-us_topic_0000001657865670_en-us_topic_0000001437891457_en-us_topic_0214164662_screen144111513342">INSERT INTO "public"."exmp_tb1" ("tb1_name","tb1_sex","tb1_address","tb1_number") VALUES ('David','male','NewYork','01015827875');
|
|
INSERT INTO "public"."exmp_tb1" ("tb1_name","tb1_sex","tb1_address","tb1_number") VALUES ('Rachel','female','NewYork','01015827749');
|
|
INSERT INTO "public"."exmp_tb1" ("tb1_name","tb1_sex","tb1_address","tb1_number") VALUES ('Monica','female','NewYork','010158996743');</pre>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0184.html">INSERT</a></div>
|
|
</div>
|
|
</div>
|
|
|