Create unique index and check it in user_ind_columns and user_cons_columns : Create Index « Index « Oracle PL / SQL






Create unique index and check it in user_ind_columns and user_cons_columns

    
SQL>
SQL> set echo off
SQL> create table emp(
  2           emp_id            integer     primary key
  3          ,lastname               varchar2(20)    constraint lastname_create_nn not null
  4          ,firstname              varchar2(15)    constraint firstname_create_nn not null
  5          ,midinit                varchar2(1)
  6          ,street                 varchar2(30)
  7          ,city                   varchar2(20)
  8          ,state                  varchar2(2)
  9          ,zip                    varchar2(5)
 10          ,shortZipCode           varchar2(4)
 11          ,area_code              varchar2(3)
 12          ,phone                  varchar2(8)
 13          ,company_name           varchar2(50));

Table created.

SQL>
SQL> create unique index pk_idx on emp (emp_id);

SQL>
SQL> select index_name, table_name, column_name from user_ind_columns where table_name = 'EMP';


SQL>
SQL> select constraint_name, table_name, column_name from user_cons_columns where table_name = 'EMP';

SQL>
SQL>
SQL> drop table emp cascade constraints;

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 an index, and add primary key to use that index
8.Create index along with the column definition
9.Create index for combined columns
10.Create index for upper case last name
11.Create index on cluster
12.Create index with tablespace
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