I need to format a timestamp in the following format:
DDMMYYHHMMSS
I was able to use strftime , for example:
select strftime("%d%m%Y%H%M%S", current_timestamp) from stream;
But this way it shows 4 digits for the year and I only need the last two, how to format since %y
is not valid.