first commit
This commit is contained in:
commit
ba848e218d
1001 changed files with 152333 additions and 0 deletions
12
数据库/oracle/oracle基本操作.md
Normal file
12
数据库/oracle/oracle基本操作.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
### 添加select权限
|
||||
```
|
||||
grant select on USER1.TABLE to USER2;
|
||||
```
|
||||
### 添加创建同义词权限
|
||||
```
|
||||
grant create synonym to USER2;
|
||||
```
|
||||
### 创建同义词
|
||||
```
|
||||
create or replace synonym TABLE for USER1.TABLE;
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue