Click here to Skip to main content
15,889,863 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello experts . I have a requirement like:

I have this type of table result :
SQL
Qid  AnsId   AnsCount 
2     1      1
2     2      3
2     3      NULL
2     4      NULL
1     5      2
1     6      1
1     7      NULL
1     8      1



but i want it in the following format :
SQL
Qid   Ans1  Ans2   Ans3  Ans4
2      1     3      0     0
1      2     1      0     1 


Thank you in advance.
Posted
Comments
[no name] 14-Dec-12 1:45am    
Any efforts so far miss ??

1 solution

Please check the Pivot feature of SQL server. You may get the relevant help from the following link http://msdn.microsoft.com/en-us/library/ms177410%28v=sql.105%29.aspx[^]

Regards
Pawan
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900