Question: > - GROUPING #2 In the EncounterFact table, each row is one encounter, and the Date column stores the start date and time that an
> - GROUPING #2 In the EncounterFact table, each row is one encounter, and the Date column stores the start date and time that an encounter started. Which of the following queries would return the earliest start date of the encounters in EncounterFact? SELECT ONE OF THE FOLLOWING (3 PTS) A. SELECT TOP 1 Date FROM EncounterFact ORDER BY Date DESC B. SELECT MAX( Date ) FROM Encounter Fact C. SELECT TOP 1 Date FROM EncounterFact D. SELECT MIN( Date ) FROM EncounterFact
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
