I have the following timestamp "1505143211567". By removing the last 3 numbers I can able to convert to normal human readable format. The DB is running from Oracle. I want to convert this timestamp to human readable. I tried something like below.
From sql I can write it by removing last 3 and
select from_unixtime(1505143211)
But in oracle its kind of different. And each time I dont want to remove the number and check manually.
Need is : DB query.