What I am looking for is to group by and count the total of different data in the same table and have them show in two different columns. Like below.
Data in table A
Fields: Name - Type
   Bob  - 1  
   John - 2 
   Bob  - 1 
   Steve -1 
   John - 1 
   Bob - 2
Desired result from query:
Name - Type 1 - Type 2
    Bob - 2 - 1
    John - 1 - 1
    Steve - 1 - 0