Questions Related to databases

Multiple choice technology databases
  1. Defining a clustered index on Account_ID

  2. Defining a clustered index on Account_ID, Trans_Date

  3. Defining a non-clustered index on Account_ID, Trans_Date

  4. Don't define any indexes

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology databases
  1. Use UNION between the 10 SELECT statements

  2. Execute separate SQL statements and let the front-end merge the results

  3. Use UNION ALL between the 10 SELECT statements

  4. Define a temporary table and populate it with data from the 10 SELECT statements and then do a single SELECT from this table

Reveal answer Fill a bubble to check yourself
C Correct answer