Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
In my project I am using a table tblSurvey_quastions..
The table structure is like this.
client         Quastion
sudeer           Q1
sudeer           Q2
sudeer           Q3



I need the values like this

client            Quastion     Quastion1       Quastion2
sudeer              Q1           Q2             Q3


How can I get this?

Please help me....
Posted
Updated 8-Apr-13 3:12am
v6
Comments
Maciej Los 8-Apr-13 6:16am    
What for?

1 solution

SQL
SELECT TOP(1) ID,Client,STUFF((SELECT DISTINCT ',' + Question FROM dbo.Temporary  
FOR XML PATH ('')), 1, 1, '') from Temporary where Client='Sudeer'
Temporary is the name of the Table.
 
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