云数据库 GAUSSDB-UPDATE:示例

时间:2024-01-23 20:09:29

示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--创建表student1。
postgres=# CREATE TABLE student1
(
   stuno     int,
   classno   int 
)
DISTRIBUTE BY hash(stuno);

--插入数据。
postgres=# INSERT INTO student1 VALUES(1,1);
postgres=# INSERT INTO student1 VALUES(2,2);
postgres=# INSERT INTO student1 VALUES(3,3);

--查看数据。
postgres=# SELECT * FROM student1;

--直接更新所有记录的值。
postgres=# UPDATE student1 SET classno = classno*2;

--查看数据。
postgres=# SELECT * FROM student1;

--删除表。
postgres=# DROP TABLE student1;
support.huaweicloud.com/devg-v1-gaussdb/gaussdb_devg_0645.html