Which Of The Following Statement Is Used To Create A Unique #396
Which of the following statement is used to create a UNIQUE Index in SQL?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Constraints - SQL Index - Quiz No.1.
Which of the following statement is used to create a UNIQUE Index in SQL?
CREATE INDEX index_name ON table_name (column_name);
CREATE UNIQUE INDEX index_name ON table_name (column_name);
CREATE INDEX UNIQUE index_name ON table_name (column_name);
CREATE UNIQUE INDEX index_name ON (column_name);