Files
oper/DB/VIEWS/SICD_USER_LIST.sql
2023-06-08 11:55:59 -03:00

9 lines
305 B
SQL

--------------------------------------------------------
-- DDL for View SICD_USER_LIST
--------------------------------------------------------
CREATE OR REPLACE FORCE EDITIONABLE VIEW "ENVX_OPER"."SICD_USER_LIST" ("USER_MAIL", "USER_NAME") AS
select unique user_mail, user_name
from user_roles
;