“Crie tabela no servidor SQL” Respostas de código

Crie tabela no servidor SQL

-- ********************** For more tutorial - Visit NAYCode.com 
CREATE TABLE [dbo].[Customers](
	[Cust_Id] [int] NOT NULL,
	[Cust_Name] [nvarchar](50) NULL,
	[Cust_Address] [nvarchar](100) NULL,
	[Cust_Phone] [nvarchar](50) NULL,
	[Cust_DOB] [datetime] NULL,
 CONSTRAINT [PK_Customers] PRIMARY KEY CLUSTERED 
(
	[Cust_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
Ayaz Ullah Sharif

Crie a sintaxe da instrução TABLE no servidor SQL

--****************** For More help, visit NAYCode.com
CREATE TABLE [table_name]
(
  Col1 [datatype],
  Col2 [datatype]
  CONSTRAINT [PK_Name] PRIMARY KEY CLUSTERED 
  (
	[Col1] ASC
  )
)
Ayaz Ullah Sharif

Respostas semelhantes a “Crie tabela no servidor SQL”

Perguntas semelhantes a “Crie tabela no servidor SQL”

Mais respostas relacionadas para “Crie tabela no servidor SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código