I want the date to show 04-23-2021 in one column and the for the second column to show time in a 18:56 format.
I already added the column where its supposed to go to.
I tried these two entries
UPDATE [dbo].[YearlyView]
SET [time_column] = FORMAT(CONVERT(datetime, [time_column]), 'HH:mm')
UPDATE [dbo].[YearlyView]
SET [time_column] = FORMAT(CONVERT(time, [time_column]), 'HH:mm')
This didnt work.