how to create table type in sql server 2008 r2

how to create table type in sql server 2008 r2

This is basically used to create atable type using SQL Server. Please see the below example.

CREATE TYPE [dbo].[MapExcelTableType] AS TABLE(
      [ID] [int] NULL,
      [CostCenter] [varchar](150) NULL,
      [MobileNo] [varchar](150) NULL,
      [EmailID] [varchar](150) NULL,
      [FirstName] [varchar](150) NULL,
      [LastName] [varchar](150) NULL,
      [Services] [varchar](150) NULL,
      [UsageType] [varchar](150) NULL,
      [Network] [varchar](150) NULL,
      [UsageIncluded] [int] NULL,
      [Unit] [varchar](150) NULL
)
GO


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^