Hello there, Need some advice.
I have a database that I have 2 field. one is the Project Id and the other is the region.
I would like to combine all the region data that have the same project ID. could you please advice how to do it?
Here is the sample data
Project ID | Region
========= | ===========
1 | HK
1 | SG
2 | SG
3 | HK
3 | SG
3 | TK
End results
Project ID Combine Region
======== ==============
1 HK, SG
2 SG
3 HK, SG, TK
Please advice how to do this query. and many thanks for your help in advance.
I have a database that I have 2 field. one is the Project Id and the other is the region.
I would like to combine all the region data that have the same project ID. could you please advice how to do it?
Here is the sample data
Project ID | Region
========= | ===========
1 | HK
1 | SG
2 | SG
3 | HK
3 | SG
3 | TK
End results
Project ID Combine Region
======== ==============
1 HK, SG
2 SG
3 HK, SG, TK
Please advice how to do this query. and many thanks for your help in advance.
Comment