Hello I have this column :
date1
6/19/2019 3:10:12 PM
I wanted just to extract the time so I used the following query :
select try_parse([date1] as time using 'en-US') from myTable
But the problem is I got this :
15:10:12.0000000
whereas I would like to just have this :
15:10:12
How can I solve this ?
Thank you very much !