This is a bit hard to explain but I'll try my best.
I have 2 tables. One table has a row with the following value:
2,3
The two numbers are both ID's that are in the second table. I need to write a query that will ultimately give me the values of the second table, merged together as follows:
Data One, Data Two
Instead of just the id's. Is this possible? I tried to figure out how to use a Split function in SQL but then I'd run into the problem of how to get both pieces of data once the ID's are split...
MGM out
I have 2 tables. One table has a row with the following value:
2,3
The two numbers are both ID's that are in the second table. I need to write a query that will ultimately give me the values of the second table, merged together as follows:
Data One, Data Two
Instead of just the id's. Is this possible? I tried to figure out how to use a Split function in SQL but then I'd run into the problem of how to get both pieces of data once the ID's are split...
MGM out
Comment