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