How will you write a query to target all profiles that have been created in the current month and year?
Posted: Thu Jul 21, 2022 9:10 pm
How will you write a query to target all profiles that have been created in the current month and year?
A. Year(@created) = Year(FindDate()) AND Month(@created) = Month(FindDate())
B. Year(@created) = Year(GetDate()) AND Month(@created) = Month(GetDate())
C. Year(@created) = Year(TodayDate()) AND Month(@created) = Month(TodayDate())
D. Year(@created) LIKE Year(GetDate()) AND Month(@created) LIKE Month(GetDate())
A. Year(@created) = Year(FindDate()) AND Month(@created) = Month(FindDate())
B. Year(@created) = Year(GetDate()) AND Month(@created) = Month(GetDate())
C. Year(@created) = Year(TodayDate()) AND Month(@created) = Month(TodayDate())
D. Year(@created) LIKE Year(GetDate()) AND Month(@created) LIKE Month(GetDate())