I have a column containing unix-timestamp data interpreted as Long type by Spark, for example:
+---------------+
| my_timestamp |
+---------------+
| 1584528257638 |
| 1586618807677 |
| 1585923477767 |
| 1583314882085 |
I'd like to convert it into a human readable format and for example having something like
+------------------------+
| my_timestamp |
+------------------------+
|2020-03-18 10:44:17.638 |
|2020-04-11 16:26:47.677 |
|2020-04-03 15:17:57.767 |
|2020-03-04 09:41:22.085 |
how can I do that?