暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

openGauss每日一练第12天 | openGauss数据类型

原创 hedy~袁聪 2021-12-14
256

#第一次进入等待15秒
#数据库启动中...
su - omm
gsql -r

1.创建一个复合类型,重命名复合类型,为复合类型增加属性、删除属性

create type yc_type as (a int,b char(20));
alter type yc_type rename to yc_tp;
alter type yc_tp add attribute c int;
alter type yc_tp drop attribute a;
\d yc_tp

2.创建一个枚举类型,新增标签值,重命名标签值

create type yc_mj as enum ('a','b','c');
select * from pg_enum;
alter type yc_mj add value if not exists 'd' before 'c';
alter type yc_mj rename value 'd' to 'e';

3.使用新创建的类型创建表

create table yc (id int,name yc_tp,type yc_mj);
insert into yc values (1,('a',1),'a');
insert into yc values (2,('b',2),'b');
insert into yc values (2,('b',2));
insert into yc values (3,('c',3));
select * from yc;
select id,(name).b,type from yc;

4.删除类型

drop type yc_tp cascade;
drop type yc_mj cascade;

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论