Computer Science - Database Systems - Discussion

Discussion Forum : Database Systems - Section 4 (Q.No. 1)
1.
In SQL, the command(s) is(are) used to create an index for a table or cluster
CREATE INDEX
MODIFY INDEX
SET INDEX TO FILE
All of the above
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Maunank Shah (MONTS) said:   1 decade ago
The CREATE INDEX statement is used to create indexes in tables.
Indexes allow the database application to find data fast; without reading the whole table.

Syntax :
CREATE INDEX index_name ON table_name (column_name)

Post your comments here:

Your comments will be displayed after verification.