문제

What is the unit type in PL/SQL? If there is no built-in type, how do I make one?

올바른 솔루션이 없습니다

다른 팁

Perhaps you are trying to create your own type. In Oracle you can achieve that with the CREATE TYPE statement.

Use the CREATE TYPE statement to create the specification of an object type, a SQLJ object type, a named varying array (varray), a nested table type, or an incomplete object type. You create object types with the CREATE TYPE and the CREATE TYPE BODY statements. The CREATE TYPE statement specifies the name of the object type, its attributes, methods, and other properties. The CREATE TYPE BODY statement contains the code for the methods that implement the type.

You can define the behavior of your own object.

link

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top