I have table which have following fields.
- ID = Bigint (PK)
- USERID = bigint
- Area = Varchar(50)
Now Every User have 3 Areas in table (So there are 3 entry for USERid with different Area).
I need output as below:
Now In report I want to Display USERID and all Area with comma separated associated by his UserID as above.
I try with group by but I did not find any help.