Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Obtain date from timestamp

Tags:

hiveql

hue

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.

like image 809
Sarah Avatar asked Jul 25 '17 00:07

Sarah


People also ask

How do I get just the date from a timestamp?

In order to get the date from the timestamp, you can use DATE() function from MySQL.


1 Answers

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

like image 184
JRG Avatar answered Sep 23 '22 05:09

JRG