sql-DDL-同义词

2022/7/21 2:24:59

本文主要是介绍sql-DDL-同义词,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

可以给数据库对象(表、视图等)起别名。

创建一个test用户,并授权访问scott的emp表

create user test identified by 12345678 ;
grant create session to test ;
grant select on scott.emp to test ;

使用test用户查询scott的emp表
select * from scott.emp;

创建同义词简化访问方式

在test账户下为scott.emp起别名(同义词)

create synonym scottemp for scott.emp; 权限不够

需要sys账户授权 grant create synonym to test;

使用同义词查询
select * from scottemp;

私有同义词:谁创建谁使用。

scott账户下使用同义词scottemp查询 --不存在

删除同义词

drop synonym 同义词 ;

drop synonym scottemp;

公有同义词:无论谁创建,任何人都可以使用。

  • 需要先在sys账户中授权 : grant create public synonym to test;

  • 创建公有同义词:
    create public synonym scottemp for scott.emp;



这篇关于sql-DDL-同义词的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程