We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a function can convert bigint to date ?
I store timestamp in memory and want to view as date(like yyyy-MM-dd ) when analysis heap.
yyyy-MM-dd
Tried from_unixtime() but not work.
from_unixtime()
The text was updated successfully, but these errors were encountered:
Here is one way to convert timestamps to readable format:
select d.this, timestamp'1970-01-01 00:00:00.000' + interval (d.fastTime/1000) second as date_timestamp from "java.util.Date" d
Sorry, something went wrong.
No branches or pull requests
Is there a function can convert bigint to date ?
I store timestamp in memory and want to view as date(like
yyyy-MM-dd
) when analysis heap.Tried
from_unixtime()
but not work.The text was updated successfully, but these errors were encountered: