This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Which function returns the number of distinct values of a particular column?
count()
dcount()
distinct()
Which of the following can you use to summarize storm event data by week?
summarize ... by bin(StartTime, 7d)
summarize ... by StartTime
summarize ... by 1week
Which function can you use with the summarize operator to return the median of storm events per state?
summarize
avg()
max()
percentiles()
Which of the following best describes the let statement?
let
The let statement is useful for building complex expressions and using them as part of a query.
The let statement is useful for breaking up a complex expression into multiple parts. It defines a scalar or tabular variable, or a user-defined function that can be used multiple times within a query.
The let statement creates persisted functions as part of the database metadata (stored functions). They're invoked through a name, are provided with zero or more input arguments, and return a single value.
You must answer all questions before checking your work.
Was this page helpful?