SQL - Database Design and NormalizationWhich table in a star schema typically contains numeric measures like sales amount or quantity?ADimension tableBFact tableCLookup tableDBridge tableCheck Answer
Step-by-Step SolutionSolution:Step 1: Identify fact table roleThe fact table stores numeric measures such as sales amount, quantity, or counts.Step 2: Differentiate from dimension tablesDimension tables store descriptive attributes, not numeric measures.Final Answer:Fact table -> Option BQuick Check:Numeric measures = Fact table [OK]Quick Trick: Measures live in fact tables, not dimensions [OK]Common Mistakes:Confusing dimension tables with fact tablesThinking lookup or bridge tables hold measuresAssuming measures are stored in dimension attributes
Master "Database Design and Normalization" in SQL9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More SQL Quizzes Advanced Query Patterns - Running total without window functions - Quiz 10hard Advanced Window Functions - LAG function for previous row access - Quiz 8hard CASE Expressions - Searched CASE syntax - Quiz 2easy Indexes and Query Performance - Composite index and column order - Quiz 2easy Indexes and Query Performance - Index impact on INSERT and UPDATE - Quiz 13medium Stored Procedures and Functions - Function vs procedure decision - Quiz 11easy Transactions and Data Integrity - ACID properties mental model - Quiz 1easy Triggers - AFTER trigger execution - Quiz 3easy Triggers - UPDATE trigger with OLD and NEW - Quiz 3easy Window Functions Fundamentals - Window frame specification (ROWS BETWEEN) - Quiz 13medium