数据表空间和索引表空间 创建索引时怎么指定索引表空间?

创建索引时怎么指定索引表空间?创建表时,只能指定主键和唯一键的索引表空间。其他类型的索引只能通过create index/alter index指定。引用如下:create table test1(I

创建索引时怎么指定索引表空间?

创建表时,只能指定主键和唯一键的索引表空间。其他类型的索引只能通过create index/alter index指定。引用如下:create table test1(ID number(10)、name VARCHAR2(20)、age number(3)、constraint PK est1 primary key(ID)using index tablespace tbsind)tablespace tbscur