As there has been many changes since this question had answers, I wanted to provide a new way to get the requested result. There are two ways to parse DATETIME data. First, to get the date as this question asks:
DATEVALUE([TableColumnName])
Second, to get the time from the value:
TIMEVALUE([TableColumnName])
Example:
Table: Customers
Column: CreationDate as DateTime
[Customers].[CreationDate]: 2/7/2020 09:50:00
DATEVALUE([Customers].[CreationDate]) '--> Output: 2/7/2020
TIMEVALUE([Customers].[CreationDate]) '--> Output: 09:50:00
I hope that this helps as I was searching for a while and found many answers as seen in this question and none of those worked. IE CAST
and CONVERT
.
Happy Coding!