本页介绍天翼云TeleDB数据库的UPDATE语法。 单表更新teledb=# update teledb_serial set nickname = 'random value' where id = 2; UPDATE 1 teledb=# select * from teledb_serial; id | nickname ----+--------------- 1 | hello teledb 2 | random value (2 rows)null 条件的表达方法。
本页介绍天翼云TeleDB数据库的UPDATE语法。 单表更新teledb=# update teledb_serial set nickname = 'random value' where id = 2; UPDATE 1 teledb=# select * from teledb_serial; id | nickname ----+--------------- 1 | hello teledb 2 | random value (2 rows)null 条件的表达方法。
本页介绍天翼云TeleDB数据库的UPDATE语法。 单表更新teledb=# update teledb_serial set nickname = 'random value' where id = 2; UPDATE 1 teledb=# select * from teledb_serial; id | nickname ----+--------------- 1 | hello teledb 2 | random value (2 rows)null 条件的表达方法。
本页介绍天翼云TeleDB数据库的UPDATE语法。 单表更新teledb=# update teledb_serial set nickname = 'random value' where id = 2; UPDATE 1 teledb=# select * from teledb_serial; id | nickname ----+--------------- 1 | hello teledb 2 | random value (2 rows)null 条件的表达方法。
本页介绍天翼云TeleDB数据库的UPDATE语法。 单表更新teledb=# update teledb_serial set nickname = 'random value' where id = 2; UPDATE 1 teledb=# select * from teledb_serial; id | nickname ----+--------------- 1 | hello teledb 2 | random value (2 rows)null 条件的表达方法。
支持创建分区表全局索引,目前仅支持btree索引类型 -- 建表 CREATE TABLE parent_range_tbl( c1 int not null, c2 int not null, c3 int not null ) PARTITION BY RANGE (c1); CREATE TABLE part_0_100 PARTITION OF parent_range_tbl FOR VALUES FROM (0) TO (100); CREATE TABLE part_100_200