Wednesday, March 28, 2012

User Defined Functions


Overview:
Functions are the database objects, it contains the set of T-SQL transactions and has set of the rule that differs from stored procedure, Will discuss the difference between functions and stored procedures in next post. There are three types of functions namely Scalar Functions, Inline Table-Valued Functions and Multi-Statement Table-Valued Functions.

Scalar Functions: This function type returns a single value of data type specified in the RETURNS clause. The returned values are of any type except text, ntext, image, cursor, or timestamp.
Example:
CREATE FUNCTION fn_ScalarExample(@Val INT)
RETURNS INT
AS
BEGIN
      SET @Val = @Val*2;
      RETURN @Val;
END
GO
Usage   :
                SELECT dbo.fn_ScalarExample(12)
Result   :
                24

Inline Table-Valued Functions:  In this type there is no transactions & returns a variable of data type table whose value is derived from a single SELECT statement. SELECT scripts are specified immediate to RETURN
Example:
CREATE FUNCTION fn_InlineExample(@Val INT)
RETURNS TABLE
AS
      RETURN (SELECT (@Val*2) AS Val);
GO
Usage   :
                SELECT * FROM dbo.fn_InlineExample(12)
Result   :
                24

Multi-Statement Table-Valued Functions: In this we have to define the structure of table in RETURNS section and through the set of transaction data has to be loaded into the table.
Example:
CREATE FUNCTION fn_MultiStatementExample(@Val INT)
RETURNS @Test TABLE( Val INT)
AS
BEGIN
      INSERT @Test
      SELECT  @Val*2
      RETURN
END
GO
Usage   :
                SELECT * FROM dbo.fn_MultiStatementExample(12)
Result   :
                24

11 comments:

  1. State-of-the-art technology more information to assist you boost revenue and yield maximum benefits!

    ReplyDelete
  2. When it comes to legitimate content, it's still among the best resources anywhere on the internet. For more information on avoid censorship For more information on avoid censorship read this.

    ReplyDelete
  3. You put in your contact number and WhatsApp looks through your contact list for some other men and women that are employing the app. If you are curious to know more about digital mаrkеtіng, here.

    ReplyDelete
  4. A properly equipped drone might have gotten a ton superior look while the operator stayed at a significantly safer distance. To know more about drone camera, head over to the website.

    ReplyDelete
  5. This comment has been removed by the author.

    ReplyDelete
  6. LeadPages is an established company which has been in business for many years and has set themselves apart from the competition by providing online marketing services for the customers that they serve.If you are curious to know more about clickfunnels, read me.

    ReplyDelete
  7. If you want to know about Amazon’s selling process, check Jungle scout vs Viral launch. This will tells you how the online selling works and why it is complicated. Jungle scout vs viral launch provides essential information about Amazon selling.

    ReplyDelete
  8. The first thing that you will notice when looking for a Shopify review is that there are very many of them. They all claim to be the best shoplift. Get detailed info about super affiliate system review on this web.

    ReplyDelete
  9. If you get the right print marketing strategy, it'll be easy for you to save money on any advertising you decide to use. When you are shopping for print marketing, you should know about the tools that are available. If you are curious to know more about print on demand, check here.

    ReplyDelete
  10. The process is closely related to the concept of knowledge transfer. It is also a means of preventing monopolies from arising. This is one of the most important functions of technology transfer. Do you want to know more about latest technology updates? for detailed info click here.

    ReplyDelete
  11. This comment has been removed by the author.

    ReplyDelete