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

openGauss每日一练第12天(数据库数据类型)

原创 2021-12-12
267

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

postgres=# create type type1 as (t1 int, t2 text); postgres=# alter type type1 rename to type_1; postgres=# alter type type_1 add attribute t3 float; postgres=# alter type type_1 drop attribute t1;

image.png

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

postgres=# create type type2 as enum('open','close'); postgres=# alter type type2 add value if not exists 'unknow' before 'close'; postgres=# alter type type2 rename value 'close' to 'closed';

image.png

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

postgres=# create table dogs(t1 type_1, t2 type2);

image.png

4.删除类型

postgres=# drop type type_1 cascade ; postgres=# drop table dogs ; postgres=# drop type type2 ;

image.png

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

评论