I need to transpose data that looks like the following. I don't need to use any aggregate functions, just want to transpose columns to rows.
Current view:
Name | Code1 | Code2 | Code3 | Pct1 | Pct2 | Pct3 | Amt1 | Amt2 | Amt3
Name1   123     124     125     50     25     25   1000    1500  1555
Name2    123    124     125     50     25     25   1222    1520  1600
What I Need:
AccountName   |    Code#   |       Pct   |         Amt
Name1              123             50             1000
Name1              124             25             1500
Name1              125             25             1555
Name2              123             50             1222
Name2              124             25             1520
Name2              125             25             1600
if this is possible, could you also include where I would place my joins if I need to use data in a different table?
I'm using SQL Server Management Studio 2014 and I don't have the permission to create tables
 
     
     
    