combining rows

S

Sash

I am accessing a SQL server database that stores a description specific to an
account in a separate row for descriptions. I want them all to be in one row
with my account, i.e. Account, desc1, desc2

What I'm getting now is: Account, desc1
Account, desc2

In my mind I want to say if the account number on the next line is the same
move desc2 to prior line, but have no idea if that's even possible.
 
Top