Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
laasunde
Starting Member
3 Posts |
Posted - 2001-07-16 : 04:31:28
|
| Using this query :SELECT DISTINCT user.name, user.department, user.city, profile.Name FROM user, profileI get this output :John Smith, Sales, London, ProjectXJohn Smith, Sales, London, TeamBrianJohn Smith, Sales, London, SupportIs it possible to make the output :John Smith, Sales, London, ProjectX, TeamBrian, Support(Get all info on one line instead of X) ?CheersLars |
|
|
|
|
|
|
|