How to create a view with the name "changedata" to see the full name of all employees, salary, department name and the name of the region and allows edit of data from the table s_emp view?
create view change as
SELECT a.last_name||','||a.first_name as "Nombre",
a.salary as "Salary", b.name"Department",
c.name as "Region Name"
FROM s_emp a, s_dept b, s_region c
WHERE a.dept_id = b.id AND b.region_id = c.id