SQL query to create table

Unknown | 3:00 AM |

USE [Surgere1]
GO

/****** Object:  Table [dbo].[asn]    Script Date: 04/28/2012 10:08:14 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[asn](
 [asn_id] [bigint] IDENTITY(1,1) NOT NULL,
 [client_id] [bigint] NOT NULL,
 [from_id] [bigint] NOT NULL,
 [from_type] [varchar](50) NOT NULL,
 [to_id] [bigint] NOT NULL,
 [to_type] [varchar](50) NOT NULL,
 [status] [varchar](50) NOT NULL,
 [created_id] [bigint] NULL,
 [created_dt] [datetime] NULL,
 [last_update_id] [bigint] NULL,
 [last_update_dt] [datetime] NULL,
 [asn_no] [varchar](50) NULL,
 CONSTRAINT [PK_asn] PRIMARY KEY CLUSTERED
(
 [asn_id] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

Category:

About http://dotnetvisual.blogspot.in/:
DOT NET TO ASP.NET is a web application framework marketed by Microsoft that programmers can use to build dynamic web sites, web applications and web services. It is part of Microsoft's .NET platform and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime, allowing programmers to write ASP.NET code using any Microsoft .NET language. create an application very easily ....