Hello Experts,
I have this query
How does update statement works in architecture level?
please share your valuable thoughts.
Updated Jun 17, 2018
Hello Experts,
I have this query
How does update statement works in architecture level?
please share your valuable thoughts.
Comments
Sqlplus scott/tiger@prod
SQL>select * from emp;
SQL>update emp set sallary=30000 where empid=10;
SQL>commit;
So we will understand what is happening internaly