CE 10 Ad Hoc
SQL 2000
I am trying to find a formula to help me with rows repeating the same data over and over. They are distinct because for every vehicle in that table I can have multiple drivers in our drivers table.
Currently I get:
VID Year Make Driver Title
1 2000 Nissan Fred Owner
1 2000 Nissan Wilma Spouse
I would like to see:
VID Year Make Owner Spouse
1 2000 Nissan Fred Wilma
I know I will end up with replication if I have drivers with the same title, but I can deal with that.
Thanks in advance for any help
BB45
SQL 2000
I am trying to find a formula to help me with rows repeating the same data over and over. They are distinct because for every vehicle in that table I can have multiple drivers in our drivers table.
Currently I get:
VID Year Make Driver Title
1 2000 Nissan Fred Owner
1 2000 Nissan Wilma Spouse
I would like to see:
VID Year Make Owner Spouse
1 2000 Nissan Fred Wilma
I know I will end up with replication if I have drivers with the same title, but I can deal with that.
Thanks in advance for any help
BB45