openGauss创建模式、修改模式属性和删除模式
(一)、创建一个名为tpcds的模式
create schema tpcds;
(二)、创建一个用户tim
create user tim password'123@abcd';
将tpcds的owner修改为tim
alter schema tpcds owner to tim;
(三)、重命名tpcds为tpcds1
alter schema tpcds rename to tpcds1;
(四)、在模式tpcds1中建表customer
create table tpcds1.customer(id char(6),name varchar(10));
插入记录
insert into tpcds1.customer(id,name) values('000001','xt');
查询记录
select * from tpcds1.customer;
(五)、删除模式tpcds1
drop schema tpcds1; 
因为tpcds1不是空的
drop schema tpcds1 cascade;
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




