Create a table with 'overflow INCLUDING y' : Create Table « Table « Oracle PL / SQL
- Oracle PL / SQL
- Table
- Create Table
Create a table with 'overflow INCLUDING y'
SQL>
SQL> create table t3
2 ( x int primary key,
3 y varchar2(25),
4 z date
5 )
6 organization index
7 overflow INCLUDING y;
Table created.
SQL>
SQL> drop table t3;
Table dropped.
SQL>
SQL>
SQL> --
Related examples in the same category