17 lines
248 B
Markdown
17 lines
248 B
Markdown
# GET_USERS_LIST
|
|
|
|
## Colonne
|
|
|
|
| Colonna | Tipo |
|
|
|---------|------|
|
|
| USERS | VARCHAR2(100) |
|
|
|
|
## Definizione
|
|
|
|
```sql
|
|
CREATE OR REPLACE VIEW GET_USERS_LIST AS
|
|
select user_name as users
|
|
from APEX_WORKSPACE_APEX_USERS
|
|
where workspace_name = USER
|
|
```
|