Hello
I have a sql table which has three columns. The combined columns work as the primary key. The table has data similar to:
No Case Code
111 ADM GAD
112 ADM TRM
113 BSP RLR
Essentially, what I would like to do is to double up every row, and then add a "B" and an "H" to the end of each duplicate row. So, I need to have the above table look something like:
No Case Code
111 ADM GADB
111 ADM GADH
112 ADM TRMB
112 ADM TRMH
113 BSP RLRB
113 BSP RLRH
Does anyone know the best way to do this?
I have a sql table which has three columns. The combined columns work as the primary key. The table has data similar to:
No Case Code
111 ADM GAD
112 ADM TRM
113 BSP RLR
Essentially, what I would like to do is to double up every row, and then add a "B" and an "H" to the end of each duplicate row. So, I need to have the above table look something like:
No Case Code
111 ADM GADB
111 ADM GADH
112 ADM TRMB
112 ADM TRMH
113 BSP RLRB
113 BSP RLRH
Does anyone know the best way to do this?