I have a date field like this: 2017-03-22 11:09:55 (column name: install_date) I have another date field with date like this: 2017-04-20 (column name: test_date)
I would like to obtain only the date field from the above (2017-03-22) so that I can perform a DATEDIFF between install_date and test_date.
In order to get the date from the timestamp, you can use DATE() function from MySQL.
Assuming you are looking for this in Hive
, you can use TO_DATE
function.
TO_DATE('2000-01-01 10:20:30') returns '2000-01-01'
NOTE
: Input to TO_DATE is a string
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With