How can i convert timestamp to hh:mm:sss format in flink sql?
1
There is Built In Functions documentation page
DATE_FORMAT(eventTime, 'yyyy-MM-dd')
You need to use the Time string
Function to return the ‘hh:mm:ss’ format
found here
flink Documentation of Datetime