Similar Collections


    No collections found

questions

Title
SQL Indexes slows the execution time of which statement(s)?

SQL Indexes slows the execution time of which statement(s)?


  1. UPDATE
  2. INSERT
  3. SELECT
  4. Both A and B
discuss
SQL indexes speed up the execution time of which statement(s)?

SQL indexes speed up the execution time of which statement(s)?


  1. SELECT
  2. WHERE
  3. Both A and B
  4. None of the above
discuss
Why index is important in SQL?

Why index is important in SQL?


  1. The large database can be searched quickly with SQL Indexes.
  2. The concept below is a quick way to include different values in those columns.
  3. A smaller table may not recognize the performance of an index when used with an index.
  4. All of the above
discuss
In order to create the Index, we need to use which command?

In order to create the Index, we need to use which command?


  1. ALTER
  2. UPDATE
  3. CREATE
  4. ADD
discuss
Unique Index is similar to –

Unique Index is similar to –


  1. Primary Key
  2. Foreign Key
  3. Composite Key
  4. Alternate Key
discuss
To rename the Index, we need to use which command?

To rename the Index, we need to use which command?


  1. RENAME
  2. ALTER
  3. UPDATE
  4. ADD
discuss
In order to remove an index, we need to use which command?

In order to remove an index, we need to use which command?


  1. REMOVE
  2. DELETE
  3. DROP
  4. DEL
discuss
Which statement is correct to remove an Index from MySQL Database?

Which statement is correct to remove an Index from MySQL Database?


  1. DROP INDEX Index_Name;
  2. ALTER TABLE Table_Name DROP INDEX Index_Name;
  3. DROP INDEX Index_Name ON Table_Name;
  4. DROP INDEX Table_Name.Index_Name;
discuss
In the relational database, in order to modify index, we need to use which command?

In the relational database, in order to modify index, we need to use which command?


  1. ALTER
  2. MODIFY
  3. UPDATE
  4. ADD
discuss
What is TRUE about SQL EXCEPT clause?

What is TRUE about SQL EXCEPT clause?


  1. The result is purged of duplicates
  2. Duplicate records are not removed
  3. Only one column can be compared by a clause
  4. None of the above
discuss
What is TRUE about NOT IN clause?

What is TRUE about NOT IN clause?


  1. The result is purged of duplicates
  2. Duplicate records are not removed
  3. Performs column-by-column comparisons
  4. None of the above
discuss
Which of the following states the correct situation in which Indexes should not be used in SQL?

Which of the following states the correct situation in which Indexes should not be used in SQL?


  1. When the table is small, it is possible to avoid using SQL indexes.
  2. Updates need to be made frequently to the table.
  3. When there are a lot of NULL values in a column, indexed should not be used.
  4. All of the above
discuss
total MCQs: 13

MCQs

13

Views

78

Best Answers

299

Points

5