InterviewSolution
Saved Bookmarks
| 1. |
What Is Inline Table-value User-defined Function? |
|
Answer» An Inline Table-Value user-defined function RETURNS a table DATA type and is an exceptional ALTERNATIVE to a view as the user-defined function can PASS parameters into a T-SQL select command and in essence PROVIDE us with a parameterized, non-updatable view of the underlying tables. An Inline Table-Value user-defined function returns a table data type and is an exceptional alternative to a view as the user-defined function can pass parameters into a T-SQL select command and in essence provide us with a parameterized, non-updatable view of the underlying tables. |
|