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 |
n1ckyr
Starting Member
1 Post |
Posted - 2006-12-20 : 04:38:01
|
how to join data in another viewTabel data 1ID HeadSubject HeadID1 Outdoor 62 Indoor 6ID Subject Access HeadID1 Marketing 5 62 Sales 2,3 63 Sekretary 2,5 7Result that i want in another viewID HeadSubject Access HeadID1 Outdoor 2,3,5 63 Indoor 2,5 7how to join / union that data to make the access |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2006-12-20 : 04:41:18
|
Search SQLTeam for a CSV user defined function.But you should really benefit by normalizing your data.Peter LarssonHelsingborg, Sweden |
 |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2006-12-20 : 05:19:53
|
1 Normalise the table. Do google search on Normalization2 Do all concatenations at front end applicationMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|