View: office.department_scrud_view

Schema office
Materialized View Name department_scrud_view
Owner postgres
Tablespace DEFAULT
Description
 CREATE OR REPLACE VIEW office.department_scrud_view
 AS
 SELECT departments.department_id,
    departments.department_code,
    departments.department_name
   FROM office.departments;