Create an index, and add primary key to use that index : Create Index « Index « Oracle PL / SQL






Create an index, and add primary key to use that index

    
SQL>
SQL>
SQL> create table inventory(
  2  partno number(4),
  3  partdesc varchar2(35),
  4  price number(8,2),
  5  warehouse varchar2(15));

Table created.

SQL>
SQL> Create index invent_part_loc_idx
  2  On inventory (partno, warehouse)
  3  Pctfree 10;

Index created.

SQL>
SQL> Alter table inventory add (
  2  Constraint invent_partno_pk primary key (partno)
  3  Using index invent_part_loc_idx);

Table altered.

SQL>
SQL> drop table inventory;

Table dropped.

SQL>

   
    
    
  








Related examples in the same category

1.To create an index on the LastName column of the Employee table
2.Created an index based on the uppercase evaluation of the employe's first name field
3.Create two indexes for one single table
4.Create an index reverse
5.Function-based Indexes
6.simple index organized table
7.Create index along with the column definition
8.Create index for combined columns
9.Create index for upper case last name
10.Create index on cluster
11.Create index with tablespace
12.Create unique index and check it in user_ind_columns and user_cons_columns
13.Demonstrate a bitmap join index.
14.CREATE UNIQUE INDEX
15.Create a fully indexed table named myCode
16.Create Non-Unique index
17.indextype is ctxsys.context
18.create unique index with case ... when statement