添加 '数据库/oracle/修改密码.md'

This commit is contained in:
iProbe 2023-02-08 18:30:08 +08:00
parent 46f415e739
commit 8c4c62b227

View file

@ -0,0 +1,8 @@
### 1.查询用户
```sql
select username from dba_users;
```
### 2.修改密码
```sql
alter user xxx identified by xxxx;
```