Hello,
I'm using SQL Server 2017 and have a table that looks like the below:
1_Start_Time 1_End_Time 2_Start_Time 2_End_Time
null null 11:12 11:18
null null 12:35 14:10
10:15 12:39 null null
13:59 14:36 null null
What I need to do is write a query so that the results looks like the below:
1_Start_Time 1_End_Time 2_Start_Time 2_End_Time
10:15 12:39 11:12 11:18
13:59 14:36 12:35 14:10
Thanks for all your help!
I'm using SQL Server 2017 and have a table that looks like the below:
1_Start_Time 1_End_Time 2_Start_Time 2_End_Time
null null 11:12 11:18
null null 12:35 14:10
10:15 12:39 null null
13:59 14:36 null null
What I need to do is write a query so that the results looks like the below:
1_Start_Time 1_End_Time 2_Start_Time 2_End_Time
10:15 12:39 11:12 11:18
13:59 14:36 12:35 14:10
Thanks for all your help!