Home  >  Article  >  Database  >  同义词

同义词

PHPz
PHPzOriginal
2016-06-07 16:06:312746browse

本篇文章主要给大家介绍mysql中同义词相关知识,希望对需要的朋友有所帮助!

相关mysql视频教程推荐:《mysql教程

1.创建:

-- Create the synonym create or replace synonym CPS_ROLE_PERMISSION for CPSSYS.CPS_ROLE_PERMISSION@ORA11G@UCC_BICP;

2.查看

 select * from all_objects t where t.owner like 'LBI_%' AND T.OBJECT_TYPE LIKE 'SY';

1.创建:

-- Create the synonym 
create or replace synonym CPS_ROLE_PERMISSION
  for 
CPSSYS.CPS_ROLE_PERMISSION@ORA11G@UCC_BICP;

2.查看

select * from all_objects t where t.owner like 'LBI_%' AND T.OBJECT_TYPE LIKE 'SY';

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn