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

openGauss每日一练第6天|openGauss创建模式、修改模式属性和删除模式

原创 Catch the rainbow 2021-12-22
522

1.创建一个名为tpcds的模式

create schema tpcds;
\dn+ tpcds;


2.创建一个用户tim, 并将tpcds的owner修改为tim,且修改owner前后分别使用\dn+查看模式信息

create user tim password 'Open_234';
ALTER SCHEMA tpcds OWNER TO tim;
\dn+ tpcds;


3.重命名tpcds为tpcds1

alter schema tpcds rename to tpcds1;
\dn+ ;


4.在模式tpcds1中建表customer、插入记录和查询记录

create table tpcds1.customer(product_id INTEGER,product_name Char(20),category Char(10));
insert into tpcds1.customer(product_id,product_name,category) values
(1601,'lamaze','toys'),
(1700,'wait interface','Books'),
(1666,'harry potter','toys');
select * from tpcds1.customer;
\dt tpcds1.customer


5.删除模式tpcds1

drop schema tpcds1 cascade;

drop user tim;


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

评论