Is there any function in hive that converts epoch time to standard date?

12,758

From: https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF#LanguageManualUDF-DateFunctions

from_unixtime(bigint unixtime[, string format])
Share:
12,758

Related videos on Youtube

priyank
Author by

priyank

Updated on June 07, 2022

Comments

  • priyank
    priyank almost 2 years

    to_date function takes this "1970-11-01 00:00:00" as an input and returns "1970-11-01".

    But I have epoch time as an input. How do I convert it to standard date format?

    There is a function to convert standard date to unix epoch time but not the other way.

    Any help is appreciated.

    Thanks priyank