1
I’m learning how to use tables with PIVOT in Sql-Server. I have a table with the item name, seller name and customer id.
Item    | Customer |   ID Rep
Pen Set  | 1001     |  Richard
Binder   | 25092    |  Nick
Pen Set  | 5149     |  Morgan
Binder   | 5453     |  Susan
Pen Set  | 55456    |  Matthew
Pencil   | 5470     |  Richard
Desk     | 481      |  James
I created the PIVOT to show the amount of items that each seller sold, and my code was like this
select * from(
select 
        [Item]
        ,[Customer ID]
        ,Rep
from
        [dbo].[WRK_Transacoes] 
) as TabUm 
Pivot (
    count([Customer ID])
    FOR [Item]
    IN ([Binder]
        ,[Desk]
        ,[Pen Set]
        ,[Pen]
        ,[Pencil])
)as PivotTable
With the following output: 
Vendedor|Binder|Desk|Pen|Set Pen|Pencil
Alex       2      0   1    0       2
Bill       2      0   0    1       2
James      1      1   0    1       1
Matthew    1      1   2    0       0
Morgan     1      0   1    0       1
Nick       1      0   0    1       0
Rachel     1      0   0    0       3
Richard    3      0   2    1       2
Smith      1      1   0    0       1
Susan      1      0   1    1       0
Now, ask her to have a column showing the total of the items that each seller sold. How do I do this?
Below the example of how I want my table
Vendedor|Binder|Desk|Pen|Set Pen|Pencil| Total
Alex       2      0   1    0       2       5
Bill       2      0   0    1       2       5
James      1      1   0    1       1       4
Matthew    1      1   2    0       0       4
Morgan     1      0   1    0       1       3
Nick       1      0   0    1       0       2
Rachel     1      0   0    0       3       4
Richard    3      0   2    1       2       8
Smith      1      1   0    0       1       3
Susan      1      0   1    1       0       3 
Excuse the size of the question.