I have a situation where we need to dynamically be able to convert from one table where multiple items are concatenated in a field. We need to have the output have one line per item to query the results.
The original table is supplied by a vendor as part of their app and we can't change it.
I was thinking a View may provide the dynamic element, providing on-time changes from the original table, but I do not know how/if a View can create multiple output lines for one input line.
To describe what I mean, here is an example:
Any suggestions are welcome. TIA!
The original table is supplied by a vendor as part of their app and we can't change it.
I was thinking a View may provide the dynamic element, providing on-time changes from the original table, but I do not know how/if a View can create multiple output lines for one input line.
To describe what I mean, here is an example:
Code:
Input
Date User MemberID Change
9/30/2007 Sally 123456789 FirstChange; SecondChange; ThirdChange
Output
Date User MemberID Change
9/30/2007 Sally 123456789 FirstChange
9/30/2007 Sally 123456789 SecondChange
9/30/2007 Sally 123456789 ThirdChange
Any suggestions are welcome. TIA!