InterviewSolution
| 1. |
What Is Scalar User-defined Function? |
|
Answer» A Scalar user-defined FUNCTION returns one of the scalar data types. Text, ntext, image and time stamp data types are not supported. These are the type of user-defined functions that most developers are used to in other programming languages. You PASS in 0 to many PARAMETERS and you get a RETURN value. A Scalar user-defined function returns one of the scalar data types. Text, ntext, image and time stamp data types are not supported. These are the type of user-defined functions that most developers are used to in other programming languages. You pass in 0 to many parameters and you get a return value. |
|