I have the following TSQL Statement:
SELECT ProductId, OwnerId FROM Product
How I can store the ProductId and OwnerId in a TSQL variable and then return it to the calling application?
|
I have the following TSQL Statement:
How I can store the ProductId and OwnerId in a TSQL variable and then return it to the calling application? |
|||||
|
|
This sort of thing is usually done by executing the query and evaluating the results in the application using whatever framework is appropriate (for example, in .NET you'd either use one of the many ORM tools, the If this really is what you want (and need) to do, then you'll have to figure out some way to combine them into one value. Usually something like using a vertical bar ( |
|||
|
|
|
In general, no you cannot store multiple values in a variable without some hoop-jumping like delimited lists. In your example, presuming that the
If the |
|||
|
|
|
You cannot store it into a single variable - one variable can hold one value. But you can easily store it into a in-memory table - something like:
With this, you now have a table in memory, which you can use like any other table - select from it, join it to on-disk tables - whatever you need to do. You can return this to a calling application as a result set - like any other query result. |
|||
|
|
|
If you're absolutely set on loading those values into a variable:
|
|||
|
|