|
Main Menu
Resources
|
SQL CREATE INDEX
In relational database, Index will be the important mechanism for boosting performance.
CREATE INDEX Statement will look like this: CREATE [UNIQUE] INDEX [INDEX NAME]
Want to create a INDEX on Table Users which is including column names user_fname and user_lname. SQL Statement: CREATE INDEX user_name
|

Printer friendly page