¶
9.2.10. Calling Static Methods
Let T
be a user defined type that has
a static method SM
.
T::SM ( [ parameter, .... ] )
This will call the static method of SM
of T
and will return whatever the static
method returns.
Example 9.9. Calling A Static Method
select UDT_TEST::_ADD (1, 2);