I have created a table in Visual Studio. That table has two columns. First is the name of a parent and second is the child name. In case one parent has several children I would like his name to appear only once (Not sure if it matters, but the data is being generated from SSMS and the environment I am using in Visual Studio is called bids).
For example:
Name Child_Name
Gil Mike
Eduardo
Victoria Tanya
Pamela
And not:
Name Child_Name
Gil Mike
Gil Eduardo
Victoria Tanya
Victoria Pamela
How can I do that in Visual Studio?