I have below data in sql server:
Testnum Machine Name    Certification
1234    Computer 1  CCNA
2345    Computer 2  CNSE
2345    Computer 2  BBC
1234    Computer 2  CNBC
2345    Computer 3  J2EE
I want it to look like below:
Testnum Machine Name    Certification   Certification   Certification   Certification
1234    Computer 1  CCNA    CNBC        
2345    Computer 2  CNSE    BBC J2EE    
Can someone please help me, I tried various pivots but as I cannot use any aggregate function in this dataset is having tough time setting it up.
Thanks


Computer 3in your results?