且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

调用具有数据类型%TYPE参数的过程时,oracle参数类型应该是什么?

更新时间:2022-01-05 22:37:44

它应该是相同的键入作为对象的基础类型。



ORDER_MONITOR.ORDER_ID%TYPE



应该是相同的键入字段ORDER_MONITOR.ORDER_ID。很可能基于名称一个数字类型。



%TYPE只是意味着,使用左边对象的类型。



It should be the same type as the underlying type of the object.

ORDER_MONITOR.ORDER_ID%TYPE

Should be the same type as the field ORDER_MONITOR.ORDER_ID. Most likely based on the name a Number type.

The "%TYPE" just means, use the type of the object to the left.

OracleType.Number





Hogan



Hogan