PL / SQL UPDATE how to field

There are two ways

Method one: Manual

SELECT * FROM IFSAPP.PURCHASE_ORDER_TAB
WHERE ORDER_NO='1922653'
FOR UPDATE

As shown below

Here Insert Picture Description
Unlocking
Here Insert Picture Description
below into 802

Here Insert Picture Description
Click here to submit
Here Insert Picture Description
point yes
Here Insert Picture Description
points below and then complete;

Here Insert Picture Description

Method Two:

UPDATE 
PURCHASE_ORDER_TAB SET APPROVAL_RULE='802' 
WHERE ORDER_NO='1922653'

Review: In our database only change TAB, the view can not be changed; because it is set!

Published 153 original articles · won praise 15 · Views 150,000 +

Guess you like

Origin blog.csdn.net/beyond911/article/details/103698413