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

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

原创 wclluck 2021-12-12
210

本课主要学习openGauss数据类型, 除了常见的数据类型外,openGauss还支持复合数据类型和枚举类型.


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

create type commfoo as (f1 int,f2 char(10));
alter type commfoo rename to commfoo1;
alter type commfoo1 add attribute f3 int;
alter type commfoo1 drop attribute f1 int;

 


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

create type eflag AS ENUM ('one', 'two', 'three');
alter type eflag add value if not exists 'four' after 'three';
alter type eflag rename value 'four' to 'five';



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

CREATE TABLE t1_commfoo(a int, b commfoo1, c eflag);
INSERT INTO t1_commfoo values(1,('demo',1),'one');
SELECT * FROM t1_commfoo;



4.删除类型   

drop type commfoo1 cascade;
drop type eflag cascade;
drop table t1_commfoo;







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

评论