Questions Related to databases

Multiple choice technology databases
    1. Snowflake queries are faster than the star schema.
    1. Snowflake links each table to each other, while star schema links each table to a central table.
    1. Snowflake has additional tables linked to the outer tables of a star schema.
    1. Snowflake is more optimized for a data warehouse.
    1. Snowflake is less complicated than star schema.
Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology databases
  1. select min(field4) as Min,Max(field4) as Max,(select Max(field4) from table1 where field4 not in(Select Min(field4) from table1)) as 2nmax from table1

  2. select min(field4) as Min,Max(field4) as Max,(select Min(field4) from table1 where field4 not in(Select Max(field4) from table1)) as 2nmax from table1

  3. select min(field4) as Min,Max(field4) as Max,(select Max(field4) from table1 where field4 not in(Select Max(field4) from table1)) as 2nmax from table1

  4. None of the Above

Reveal answer Fill a bubble to check yourself
C Correct answer