first commit

This commit is contained in:
iProbe 2022-10-18 16:59:37 +08:00
commit ba848e218d
1001 changed files with 152333 additions and 0 deletions

View 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;
```