Different Types of Functions ?
Answers were Sorted based on User's Feedback
Answer / m.s.patil
Thre are mainly three types of functions in SQl server 2005.
1.) Scalar function
2.) Inline table valued function
3.) Multi statement table valued function
Is This Answer Correct ? | 29 Yes | 5 No |
Answer / jijo
Three types
1) Scalar
A scalar user defined function returns one of the scalar
data type .text,ntext,etc
2) inline table Value
An inline table value function return a table data type
3) multi -statement table value function
A multi -statement table value function return a table and
is also an exceptional alternative to a view as the function
can support multiple t-sql statements to build the final result
Is This Answer Correct ? | 26 Yes | 4 No |
How can you find out how many rows returned in a cursor?
difference between Clustered index and non clustered index ?
Differentiate between a local and a global temporary table?
Explain having clause?
What does truncate do?
How will you optimize a stored procedure optimization?
Indexes are updated automatically is the full-text index also updated automatically?
How can I know what locks are running on which resource?
Your table has a large character field there are queries that use this field in their search clause what should you do?
How can windows applications connect to sql servers via odbc?
what is the difference between Delete and Truncate command in SQL
Is it possible for a stored procedure to call itself or recursive stored procedure?