Home > Database > Mysql Tutorial > body text

同义词

PHPz
Release: 2019-02-23 15:02:43
Original
2755 people have browsed it

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

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

1.创建:

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

2.查看

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

1.创建:

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

2.查看

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!