whats the difference between a stored procedure and a table valued function? they seem to serve the same functions
|
|
|||
|
|
|
Table-valued functions can return only a single result set; SPs can return multiple result sets. You can subsequently query over the results of table-valued functions - but not with SPs. So table-valued functions are more flexible if you don't need multiple result sets. |
||
|
