greenplum小知识点

1、gp CRUD

修改列属性
alter table demo111 alter column bcyc_id type timestamp;

插入数据
INSERT INTO demo111 (column)VaLUES (1,'a','a','a','a');

删除一列
ALTER TABLE demo111 drop COLUMN open_date;

增加一列
ALTER TABLE demo111 ADD COLUMN aaa timestamp;

更新某一列的值
UPDATE demo111 SET aaa = '20181109190000';

2、gp在shell的登陆

gp 登陆

su - postgres Nokia1@# // 切换用户名
psql -d nokia_gp_db -h 133.95.8.95 -U sqmdb -d sqmmt_label
\l 查看创建的数据库:
\c dbname
\d 查看表

你可能感兴趣的:(greenplum小知识点)