greeplum中常用的DDL語句

2021-10-04 22:53:32 字數 573 閱讀 5093

工作中總會遇到需要修改表結構的場景,對於有些表結構屬性可以直接使用語句進行修改。

修改表名

alter table rename ;

修改資料型別

alter table alter column type ;

修改中文名

comment on column .is 『《中文注釋》』;

修改欄位名

alter table rename column to ;

修改分布鍵

alter table set distributed by (,… );

刪除字段

alter table drop column ;

增加字段

alter table add column ;

常用DDL語句

1 修改欄位名稱 alter table t user login log change device id session id varchar 256 2 修改注釋 alter table t user login log modify column session id varchar 256...

MySQL常用DDL語句

刪除表 如果存在則刪除 drop table if exists t user 建立表 建立表 create table t user id bigint 20 unsigned not null auto increment,user code varchar 20 not null commen...

mysql中常用的語句 mysql中常用的語句整理

mysql中常用的語句 1 建立帶自增長的主鍵的表 drop table if exists user login create table user login user id int unsigned not null auto increment,user name varchar 50 de...