For example, I've 2 tables as follows-
Table: Parents
-------------------------
| ParentId | ParentName |
-------------------------
| 1 | abc |
-------------------------
| 2 | xyz |
-------------------------
Table: Childs
----------------------------------
| ChildId | ChildName | ParentId |
----------------------------------
| 1 | p | 1 |
----------------------------------
| 2 | q | 1 |
----------------------------------
I would to have a Query: Parents_Childs
--------------------------
| ParentName | ChildName |
--------------------------
| abc | p, q |
--------------------------
Is there any way to do it in SQL Server 2008?