首页 > 代码库 > oracle 同义词
oracle 同义词
--同义词 作用
--1 隐藏对象的名称和它的所有者
--2 提供对象的公共访问
--3同义词分类 1 公有同义词 2私有同义词
create table this_table_student(
sid integer primary key
)
insert into this_table_student values(‘11‘);
insert into this_table_student values(‘12‘);
insert into this_table_student values(‘13‘);
select *from this_table_student;
commit;
--赋权
grant create synonym to scott;
grant create public synonym to scott;
--创建私有同义词
create or replace synonym tmts for this_table_student;
select *from scott.this_table_student;
select *from tmts;
--创建公有同义词
create or replace public synonym pbtmts for this_table_student;
select *from this_table_student;
select *from pbtmts ;
insert into pbtmts values(4);
oracle 同义词
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。