Home >> FAQs/Tutorials >> Oracle Tutorials
Oracle Tutorials - Create a Table Index
By: FYIcenter.com
(Continued from previous topic...)
How To Create a Table Index?
If you have a table with a lots of rows, and you know that one of the columns
will be used often a search criteria, you can add an index for that column
to in improve the search performance. To add an index, you can use the
CREATE INDEX statement as shown in the following script:
CREATE TABLE tip (id NUMBER(5) PRIMARY KEY,
subject VARCHAR(80) NOT NULL,
description VARCHAR(256) NOT NULL,
create_date DATE DEFAULT (sysdate));
Table created.
CREATE INDEX tip_subject ON tip(subject);
Index created.
(Continued on next topic...)
- What Is an Index?
- How To Run SQL Statements through the Web Interface?
- How To Create a Table Index?
- How To List All Indexes in Your Schema?
- What Is an Index Associated with a Constraint?
- How To Rename an Index?
- How To Drop an Index?
- Can You Drop an Index Associated with a Unique or Primary Key Constraint?
- What Happens to Indexes If You Drop a Table?
- How To Recover a Dropped Index?
- What Happens to the Indexes If a Table Is Recovered?
- How To Rebuild an Index?
- How To See the Table Columns Used in an Index?
- How To Create a Single Index for Multiple Columns?
|