Member since
07-13-2018
1
Post
0
Kudos Received
0
Solutions
07-14-2018
03:50 AM
Hi @AkhilD Try with this indirect method: SELECT split_part(input, ':', 1)*3600 + split_part(input, ':', 2)*60 + split_part(input, ':', 3)
FROM your_table; Good luck.
... View more