Search Results

2
votes
2answers
574 views

Stored procedure - Send a list of parameters in for use with the IN clause [closed]

[DUPLICATE of http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause] …
1
vote

T-Sql How to return a table from a storedproc in another stored proc.

First you need to create a virtual table with the schema returned. Next populate the table from the results of the stored procedure. last use the temp table in joins or add where clauses to it to f …