DA0-001 · Question #536
Which of the following query techniques allows an analyst to select data based on date value?
The correct answer is C. Filtering. Filtering in a query (e.g., a SQL WHERE clause) restricts rows returned based on conditions, including date comparisons such as WHERE date >= '2024-01-01'. Sorting (A) changes the order of results but does not restrict which rows are returned. Parameterizing (B) makes queries…
Question
Which of the following query techniques allows an analyst to select data based on date value?
Options
- ASorting
- BParameterizing
- CFiltering
- DIndexing
How the community answered
(47 responses)- A2% (1)
- B2% (1)
- C91% (43)
- D4% (2)
Explanation
Filtering in a query (e.g., a SQL WHERE clause) restricts rows returned based on conditions, including date comparisons such as WHERE date >= '2024-01-01'. Sorting (A) changes the order of results but does not restrict which rows are returned. Parameterizing (B) makes queries dynamic by accepting input variables, but the actual restriction mechanism is still a filter. Indexing (D) is a performance optimization that speeds up data retrieval but does not itself select data by date.
Topics
Community Discussion
No community discussion yet for this question.