数据库名称 : PROD1 update employees set salary = salary + 1000 where LAST_NAME = ‘Bell’; select LAST_NAME, salary from employees where LAST_NAME=‘Bell’; (结果为5000) 另一个用户查看 : export ORACLE_SID=PROD1 sqlplus / as sysdba conn hr/hr show user; select LAST_NAME…