Created
April 15, 2023 15:41
-
-
Save yucer/21e7f65e93c1b41471462613ad1b946e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH CTE AS ( | |
SELECT | |
concat( | |
substr('20220416T070044.243Z', 1, 4), '-', | |
substr('20220416T070044.243Z', 5, 2), '-', | |
substr('20220416T070044.243Z', 7, 2), 'T', | |
substr('20220416T070044.243Z', 10, 2), ':', | |
substr('20220416T070044.243Z', 12, 2), ':', | |
substr('20220416T070044.243Z', 14) | |
) as ts | |
) | |
select from_iso8601_timestamp(ts) from CTE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment