Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

create table based on a user defined type

Suppose I have a user defined type:

CREATE OR REPLACE TYPE TEST_TYPE AS OBJECT
( 
    f1 varchar2(10),
    f2 number(5)
);

Now, I want to create a table to hold these types. I can do the following:

create table test_type_table (
    test_type_field test_type
);

This gives me a table with one column, test_type_field.

Is there an easy and automated way to instead create a table such that it has 2 columns, f1 and f2?. So that it's the equivilent to writing:

create table test_type_table (
    f1 varchar2(10),
    f2 number(5)
);
like image 256
Glen Avatar asked Jan 24 '26 04:01

Glen


1 Answers

Have you tried:

create table test_type_table of test_type;
like image 97
Thomas Padron-McCarthy Avatar answered Jan 25 '26 21:01

Thomas Padron-McCarthy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!