Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 334 Bytes

File metadata and controls

14 lines (10 loc) · 334 Bytes

Show ResultSet Types:update_select

oracle

UPDATE employees SET salary = (SELECT salary * 1.1 FROM employees WHERE department_id = 80) WHERE department_id = 80; 
create view eview as select * from employees;

显示前:

png

显示后:

png