convert time string into 12 hours in sql

Solutions on MaxInterview for convert time string into 12 hours in sql by the best coders in the world

showing results for - "convert time string into 12 hours in sql"
Said
02 Nov 2020
1declare @t time
2set @t = '14:40'
3
4select CONVERT(varchar(15),@t,100)
similar questions
queries leading to this page
convert time string into 12 hours in sql