Hi,
I have below table of data,
CustID Question Answer
1 FirstName John
1 LastName William
1 Country India
1 Zip Code 60000
2 FirstName xxxx
2 LastName yyyy
2 Country US
2 Zip Code 123456
3 OrgName ABC Pvt Ltd
3 Country UK
3 Zip Code 987654
I want to convert it in a single row group by custid and expected output should be mentioned as below,
OUTPUT DATA | |||||
Customer Id | First Name | Last Name | Org Name | Country | Zip Code |
1 | John | William | India | 60000 | |
2 | xxxx | yyyy | US | 123456 | |
3 | ABC Pvt Ltd | UK | 987654 |
kindly let me know how can i achieve the above one.
Thanks in Advance.