In sql-server, There are three column in same table,i want to make Column_C from Column_A and Column_B i want to get in same table in sql
Column_A Column_B Column_C
1,2,3,4 2,3
1,2,3 1
Column_A Column_B Column_C
1,2,3,4 2,3 1,4
1,2,3 1 2,3