I'm building an app using C# and an Access database where there's a list of employees and their bosses. I looks a bit like this:
[Employee name] [Boss #1 name] [Boss #2 name]
John Jake Margaret
Jane Jake Tony
Bob Mike Tony
Marty Mike Margaret
Is it possible to query the database to display the every names without duplicates, like this.
John
Jane
Bob
Marty
Jake
Mike
Margaret
Tony
Thanks a lot !