doc-exports/docs/dws/tool/dws_16_0147.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

31 lines
2.1 KiB
HTML

<a name="EN-US_TOPIC_0000001772536516"></a><a name="EN-US_TOPIC_0000001772536516"></a>
<h1 class="topictitle1">PASSWORD</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_p579713312318">In MySQL, <strong id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_b78948290631952">PASSWORD</strong> indicates the user password. GaussDB(DWS) does not support this attribute, which will be deleted by DSC during migration.</p>
<p id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_p574881056"><strong id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_b1062920488557">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_screen52843365572">CREATE TABLE `public`.`runoob_alter_test`(
`dataType1` int NOT NULL AUTO_INCREMENT,
`dataType2` DOUBLE(20,8),
`dataType3` TEXT NOT NULL,
PRIMARY KEY(`dataType1`)
);
ALTER TABLE runoob_alter_test PASSWORD 'HELLO';</pre>
<p id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_p12114173518210"><strong id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_b6709155185510">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001772536516__en-us_topic_0000001706105005_en-us_topic_0000001385616042_en-us_topic_0214164599_screen1360576145519">CREATE TABLE "public"."runoob_alter_test"
(
"datatype1" SERIAL NOT NULL,
"datatype2" DOUBLE PRECISION,
"datatype3" TEXT NOT NULL,
PRIMARY KEY ("datatype1")
)
WITH ( ORIENTATION = ROW, COMPRESSION = NO )
NOCOMPRESS
DISTRIBUTE BY HASH ("datatype1");</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0119.html">Table (Optional Parameters and Operations)</a></div>
</div>
</div>