doc-exports/docs/dws/tool/dws_07_8311.html
Lu, Huayi 346ac31da9 DWS TG 8.1.3.200 VERSION
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2023-08-28 09:20:17 +00:00

32 lines
1.9 KiB
HTML

<a name="EN-US_TOPIC_0000001234042131"></a><a name="EN-US_TOPIC_0000001234042131"></a>
<h1 class="topictitle1">Comments</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001234042131__en-us_topic_0238518449_en-us_topic_0237362444_en-us_topic_0214164389_p8060118">To comment out a single line, MySQL uses # or --, and <span id="EN-US_TOPIC_0000001234042131__text10892754124514">GaussDB(DWS)</span> uses --. DSC will replace # with -- for commenting out a single line during migration.</p>
<p id="EN-US_TOPIC_0000001234042131__en-us_topic_0238518449_en-us_topic_0237362444_en-us_topic_0214164389_p81991901721"><strong id="EN-US_TOPIC_0000001234042131__en-us_topic_0237712298_b177711568547">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001234042131__en-us_topic_0238518449_en-us_topic_0237362444_en-us_topic_0214164389_screen82007491711">## comment sample create a table
CREATE TABLE IF NOT EXISTS `public`.`runoob_tbl`(
`runoob_id` VARCHAR,
`runoob_title` VARCHAR(100) NOT NULL,
`runoob_author` VARCHAR(40) NOT NULL,
`submission_date` VARCHAR
)ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre>
<p id="EN-US_TOPIC_0000001234042131__en-us_topic_0238518449_en-us_topic_0237362444_en-us_topic_0214164389_p07251520113"><strong id="EN-US_TOPIC_0000001234042131__en-us_topic_0237712298_b1278175617543">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001234042131__en-us_topic_0238518449_en-us_topic_0237362444_en-us_topic_0214164389_screen1069516547110">-- comment sample create a table
CREATE TABLE "public"."runoob_tbl"
(
"runoob_id" VARCHAR,
"runoob_title" VARCHAR(100) NOT NULL,
"runoob_author" VARCHAR(40) NOT NULL,
"submission_date" VARCHAR
)
WITH ( ORIENTATION = ROW, COMPRESSION = NO )
NOCOMPRESS
DISTRIBUTE BY HASH ("runoob_id");</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_sct_0013.html">MySQL Syntax Migration</a></div>
</div>
</div>