我是oracle的新手,我正面临着创建存储过程的问题。如果有人能帮上忙,我将不胜感激。
Create procedure in `ABC` schema with input params as: `NUM1`, `STATUS1`
Check if `NUM` exists in `ABC.STATUS` table
If exists
Update the `STATUS` with input parameter passed and `LAST_UPDATED` with `SYSDATE` of `ABC.STATUS`
Else
Insert record with `NUM` and `STATUS` with input parameters and `LAST_UPDATED` with `SYSDATE` of `ABC.STATUS`https://stackoverflow.com/questions/38181285
复制相似问题