DAA-C01 · Question #174
Which approach is most suitable for making data-driven predictions?
The correct answer is B. Using built-in SQL functions for statistical analysis. Using built-in SQL functions for statistical analysis (B) is correct because these functions - such as AVG, STDDEV, CORR, PERCENTILE, and window functions like LAG/LEAD - are purpose-built for computing statistical patterns directly from your data, enabling trend analysis and…
Question
Which approach is most suitable for making data-driven predictions?
Options
- ABasic SQL queries
- BUsing built-in SQL functions for statistical analysis
- CRelying on external data sources only
- DIgnoring historical data trends
How the community answered
(51 responses)- A2% (1)
- B90% (46)
- C6% (3)
- D2% (1)
Explanation
Using built-in SQL functions for statistical analysis (B) is correct because these functions - such as AVG, STDDEV, CORR, PERCENTILE, and window functions like LAG/LEAD - are purpose-built for computing statistical patterns directly from your data, enabling trend analysis and predictive insights without leaving the database.
Why the distractors fail:
- A (Basic SQL queries): Simple
SELECT/WHERE/JOINqueries retrieve and filter data but have no predictive capability on their own - they describe, not forecast. - C (External data sources only): Ignoring your own historical data entirely is counterproductive; external data may supplement predictions but cannot replace internal patterns.
- D (Ignoring historical trends): Predictions depend on historical patterns by definition - discarding them eliminates the very foundation of any data-driven forecast.
Memory tip: Think "Statistics Stays in SQL" - when the question involves prediction or analysis, look for the answer that keeps the analytical power inside the database using built-in statistical functions, not the one that merely queries or avoids data altogether.
Topics
Community Discussion
No community discussion yet for this question.